Skip to content

Commit fb51d18

Browse files
Update create-external-data-source-transact-sql.md
Removed invalid comma after the CREDENTIAL name in the "CREATE EXTERNAL DATA SOURCE" example under section F ("Create external data source to access data in Azure Blob Storage using the abs:// interface"), which was causing a syntax error.
1 parent 9d3c7d8 commit fb51d18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/t-sql/statements/create-external-data-source-transact-sql.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1707,7 +1707,7 @@ GO
17071707
CREATE EXTERNAL DATA SOURCE MyAzureStorage
17081708
WITH (
17091709
LOCATION = 'abs://<container>@<storage_account_name>.blob.core.windows.net/',
1710-
CREDENTIAL = AzureStorageCredentialv2,
1710+
CREDENTIAL = AzureStorageCredentialv2
17111711
);
17121712
```
17131713

0 commit comments

Comments
 (0)