Hi,
I'm an account admin on Databricks and when I try to set select permission for system schemas
I take "PERMISSION_DENIED: User is not an owner of Schema 'system.compute'."
When I try to set permission for system catalog,
I take "Requires ownership of catalog โsystemโ".
I tried to run the following query but I'm stuck here
GRANT USE SCHEMA ON SCHEMA system.compute TO `client_id`;
GRANT SELECT ON TABLE system.compute.clusters TO `client_id`;
GRANT USE SCHEMA ON SCHEMA system.billing TO `client_id`;
GRANT SELECT ON TABLE system.billing.list_prices TO `client_id`;
GRANT SELECT ON TABLE system.billing.usage TO `client_id`;
Thank you