High severitysql
Power BI Refresh Error:
INSUFFICIENT_PERMISSIONS
What does this error mean?
The user or service principal executing the query does not have the required privilege to access the table, schema, catalog, or external location. This error is common after Unity Catalog migrations or permission changes.
Common causes
- 1The service principal running the job was not granted SELECT or USAGE on the target Unity Catalog object
- 2A recent Unity Catalog privilege change removed access
- 3The cluster policy restricts access to certain data assets
- 4The storage credential or external location does not grant access to the service principal
- 5The user account has a personal compute policy that prevents access to shared data
How to fix it
- 1Grant the required privilege: GRANT SELECT ON TABLE <name> TO <principal>
- 2Verify USAGE is granted on the catalog and schema containing the table
- 3Check storage credential and external location permissions if accessing external data
- 4Review the cluster policy for any access restrictions
- 5Run SHOW GRANTS ON TABLE <name> to see who currently has access