Access to system.billing.usage tables
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2024 09:03 AM
I have Account, Marketplace, Billing Admin roles. I have visibility to system.billing.list_prices table only.
How do I get access to system.billing.usage tables? Databricks instance is on AWS.
Thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2024 09:11 AM
Hello @raghu2,
Are you getting any error when querying table: system.billing.usage?
Are you able to browse to the table through the catalog?
You would likely need the below permissions:
GRANT USE ON SCHEMA system.billing TO <user>;
GRANT SELECT ON TABLE system.billing.usage TO <user>;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2024 10:08 AM
Hi @Alberto_Umana, Thanks for your response. I needed Metastore Admin permissions too. In account console, I changed the Metastore Admin to be a group, became a part of the group. With this other tables were visible. With this permission using the grant commands you provided, I can grant permissions to other users.

