An Azure analytics service that brings together data integration, enterprise data warehousing, and big data analytics. Previously known as Azure SQL Data Warehouse.
Hi Abhishek Kathapurkar AITS The error message indicates that the SQL Serverless pool in Synapse is trying to access a credential associated with the storage URL, but it cannot find it or you lack permissions.
Here are some steps to help resolve this:
Check if the credential exists:
SELECT * FROM sys.database_credentials;
If it’s missing, create it (replace <SAS_token> with your actual SAS token):
CREATE DATABASE SCOPED CREDENTIAL [https://synapselinkprd.dfs.core.windows.net/dataverse-customer-orgea8db7e8/appointment/*.csv]
WITH IDENTITY = 'SHARED ACCESS SIGNATURE',
SECRET = '<SAS_token>';
Make sure the credential has proper permissions on your storage account (read access at minimum).
Verify Power BI has permission to access Synapse and storage.
If the credential exists but the error persists, try dropping and recreating it.
Hope this helps. If this answers your query, do click Accept Answer and Yes for was this answer helpful. And, if you have any further query do let us know.