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/quickstart-sql-on-demand.md
+16-25Lines changed: 16 additions & 25 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -55,33 +55,21 @@ Use the following query, changing `mydbname` to a name of your choice:
55
55
CREATEDATABASEmydbname
56
56
```
57
57
58
-
### Create credentials
58
+
### Create data source
59
59
60
-
To run queries using SQL on-demand, create credentials for SQL on-demand to use to access files in storage.
61
-
62
-
> [!NOTE]
63
-
> In order to successfully run samples in this section you have to use an SAS token.
64
-
>
65
-
> To start using SAS tokens you have to drop the UserIdentity which is explained in the following [article](sql/develop-storage-files-storage-access-control.md#disable-forcing-azure-ad-pass-through).
66
-
>
67
-
> SQL on-demand by default always uses AAD pass-through.
68
-
69
-
For more information on how to manage storage access control, see the[Control storage account access for SQL on-demand ](sql/develop-storage-files-storage-access-control.md) article.
70
-
71
-
Execute the following code snippet to create credentials used in samples in this section:
60
+
To run queries using SQL on-demand, create data source that SQL on-demand can use use to access files in storage.
61
+
Execute the following code snippet to create data source used in samples in this section:
72
62
73
63
```sql
74
64
-- create credentials for containers in our demo storage account
75
-
IF EXISTS
76
-
(SELECT*FROMsys.credentials
77
-
WHERE name ='https://sqlondemandstorage.blob.core.windows.net')
78
-
DROP CREDENTIAL [https://sqlondemandstorage.blob.core.windows.net]
0 commit comments