You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/synapse-analytics/sql/develop-openrowset.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -29,7 +29,7 @@ The `OPENROWSET` function can optionally contain a `DATA_SOURCE` parameter to sp
29
29
```sql
30
30
SELECT*
31
31
FROM OPENROWSET(BULK 'http://<storage account>.dfs.core.windows.net/container/folder/*.parquet',
32
-
FORMAT ='PARQUET') AS file
32
+
FORMAT ='PARQUET') AS[file]
33
33
```
34
34
35
35
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
40
40
SELECT *
41
41
FROM OPENROWSET(BULK '/folder/*.parquet',
42
42
DATA_SOURCE='storage', --> Root URL is in LOCATION of DATA SOURCE
0 commit comments