User can access the tables in serverless SQL through the following query :
GRANT SELECT ON <schema>.<tablename> TO <securitygroup or user>
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I am creating some table from spark code.
The same tables are available to query from serverless pool.
When users query from serverless pool, I want to provide access to only some users on some particular tables, databases.
How can I provide access to a single user or AD Group to a single table or database on the tables/databases created using spark code?
User can access the tables in serverless SQL through the following query :
GRANT SELECT ON <schema>.<tablename> TO <securitygroup or user>