Supportability - Azure Synapse Serverless SQL Pool#7589
Supportability - Azure Synapse Serverless SQL Pool#7589jborsecnik merged 4 commits intoMicrosoftDocs:livefrom
Conversation
GRANT Database Scoped Credential Permissions works on Azure Synapse Analytics Serverless SQL Pool. This is also required when a SQL user needs to access the data in external storage account.
|
@charithcaldera : Thanks for your contribution! The author(s) have been notified to review your proposed change. |
|
@VanMSFT, There is no specific change provided here. Should we close this PR? Thanks. Thanks. |
|
@jborsecnik |
|
@charithcaldera - Thanks! Can you clarify if it only applies to SQL Pools, or all of Azure Synapse? @WilliamDAssafMSFT to confirm and make changes to the applies to when he gets back. #reassign:WilliamDAssafMSFT |
I don't see the change in the moniker on top of the page? Only a space? Did you forgot to commit? |
Applied to "synapse-analytics"
|
@charithcaldera : Thanks for your contribution! The author(s) have been notified to review your proposed change. |
Azure Synapse Analytics has both Dedicated SQL Pool and Serverless SQL pool. If this not supported to Dedicated SQL Pool in Synapse Analytics, |
Sorry i was only made the suggestion and i just made the changes in to "Applies to" section. |
Verified the syntax on Dedicated SQL Pools in Synapse. Syntax fails in Dedicated SQL Pool and only the Serverless SQL Pools works for this syntax in Synapse. Since the document is marked as supported for "Azure Synapse Analytics", we have to specifically mention which part is supported. Modified the page with "GRANT Database Scoped Credential Permissions is only supported for serverless SQL pools in Azure Synapse Analytics."
|
@charithcaldera : Thanks for your contribution! The author(s) have been notified to review your proposed change. |
|
@VanMSFT Any update ? |
|
@charithcaldera I am back in the office and can help here. I see in one of your above comments "I need to verify internally if this is supported in Dedicated SQL pool." Is this confirmed? |
Hello @WilliamDAssafMSFT As a result of that, i have upadted the document with below additional comment "GRANT Database Scoped Credential Permissions is only supported for serverless SQL pools in Azure Synapse Analytics." |
Updating for latest style, update moniker and Applies to includes.
|
@WilliamDAssafMSFT : Thanks for your contribution! The author(s) have been notified to review your proposed change. |
|
@charithcaldera I've made some additional changes necessary to bring the article up to date for the moniker and applies to tags. |
|
@WilliamDAssafMSFT: I'm sorry - only the author of this article, @VanMSFT, can sign off on your changes. But we do have an exception process - if you are on the Microsoft content or product team for this product area, you can ask the PR review team to review and merge it by sending mail to the techdocprs alias. |
Hello @WilliamDAssafMSFT , I hope we can publish this soon. |
|
@charithcaldera all set. Thanks again for making taking the time to create this PR. Should be live later today. |
Thank you @WilliamDAssafMSFT & @VanMSFT for all the help |

GRANT Database Scoped Credential Permissions works on Azure Synapse Analytics Serverless SQL Pool.
This is also required when a SQL user needs to access the data in external storage account.
Example :
CREATE LOGIN Mary WITH PASSWORD = '**********';
CREATE USER Mary FROM LOGIN Mary;
ALTER ROLE db_datareader ADD MEMBER Mary;
--CRAETE DB SCOPED CREDENTIALS
CREATE DATABASE SCOPED CREDENTIAL WorkspaceIdentity
WITH IDENTITY = 'Managed Identity';
GO
GRANT REFERENCES ON DATABASE SCOPED CREDENTIAL::[WorkspaceIdentity] TO [Mary];