Skip to content

Commit e4dec3b

Browse files
authored
Merge pull request #91969 from MicrosoftDocs/CHEEKATLAPRADEEP-MSFT-patch-1
(AzureCXP) MicrosoftDocs/azure-docs#91835
2 parents e8a1f57 + 661c62d commit e4dec3b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/synapse-analytics/sql/develop-openrowset.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ The `OPENROWSET` function can optionally contain a `DATA_SOURCE` parameter to sp
2929
```sql
3030
SELECT *
3131
FROM OPENROWSET(BULK 'http://<storage account>.dfs.core.windows.net/container/folder/*.parquet',
32-
FORMAT = 'PARQUET') AS file
32+
FORMAT = 'PARQUET') AS [file]
3333
```
3434

3535
This is a quick and easy way to read the content of the files without pre-configuration. This option enables you to use the basic authentication option to access the storage (Azure AD passthrough for Azure AD logins and SAS token for SQL logins).
@@ -40,7 +40,7 @@ This is a quick and easy way to read the content of the files without pre-config
4040
SELECT *
4141
FROM OPENROWSET(BULK '/folder/*.parquet',
4242
DATA_SOURCE='storage', --> Root URL is in LOCATION of DATA SOURCE
43-
FORMAT = 'PARQUET') AS file
43+
FORMAT = 'PARQUET') AS [file]
4444
```
4545

4646

0 commit comments

Comments
 (0)