Hi
I worked on creating a new cluster (ClusterA) and added a few users (UserA, B) to my workspace. I am the admin and have created a database and a few tables under ClusterA.
Now I need to add UserA to see the tables but not userB
I enabled table access control for my workspace following this url.
https://learn.microsoft.com/en-us/azure/databricks/administration-guide/access-control/table-acl#--enable-table-access-control-for-your-workspace
and configure cluster-level permissions by giving "Can attach to" permissions to only userA on cluster A
https://learn.microsoft.com/en-us/azure/databricks/security/access-control/cluster-acl#configure-cluster-level-permissions
When userA goes to Data tab, he can see the clusterA but not the database and tables underneath.
What do I need to do to give userA visibility to data and tables?
I tried running the following query on my notebook
SHOW GRANT userA ON DATABASE customer_db
but I got a message saying Query returned no results, I dont know what does that mean, did it work or no?
Also I tried giving access like this
GRANT USAGE ON DATABASE customer_db TO UserA;
GRANT SELECT ON DATABASE customer_db TO UserA
but still the screen looks like this
Not sure what am I missing?