Skip to content

Commit 32f546e

Browse files
20250219 edit pass
1 parent b489fca commit 32f546e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

articles/synapse-analytics/sql/develop-tables-external-tables.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,14 @@ The following example creates an external data source in serverless or dedicated
113113
```sql
114114
CREATE DATABASE SCOPED CREDENTIAL [sqlondemand]
115115
WITH IDENTITY='SHARED ACCESS SIGNATURE',
116-
SECRET = '<secret>'
116+
SECRET = 'sv=2018-03-28&ss=bf&srt=sco&sp=rl&st=2019-10-14T12%3A10%3A25Z&se=2061-12-31T12%3A10%3A00Z&sig=KlSU2ullCscyTS0An0nozEpo4tO5JAgGBvw%2FJX2lguw%3D'
117117
GO
118118
CREATE EXTERNAL DATA SOURCE SqlOnDemandDemo WITH (
119119
LOCATION = 'https://sqlondemandstorage.blob.core.windows.net',
120120
CREDENTIAL = sqlondemand
121121
);
122122
```
123+
123124
> [!NOTE]
124125
> The SQL users need to have proper permissions on database scoped credentials to access the data source in Azure Synapse Analytics Serverless SQL Pool. [Access external storage using serverless SQL pool in Azure Synapse Analytics](./develop-storage-files-overview.md?tabs=impersonation#permissions).
125126

0 commit comments

Comments
 (0)