DP-203 • Practice Test 31
Free DP-203 practice test — 15 questions with explanations. Set 31. No signup required.
You are reviewing a script to create an external data source in Azure Synapse Analytics serverless SQL pool. Based on the exhibit, what is the purpose of the SAS token?
Refer to the exhibit.
CREATE MASTER KEY ENCRYPTION BY PASSWORD = 'MyStr0ngP@ssw0rd!';
CREATE DATABASE SCOPED CREDENTIAL SasCredential
WITH IDENTITY = 'SHARED ACCESS SIGNATURE',
SECRET = '?sv=2020-08-04&ss=b&srt=sco&sp=rl&se=2025-12-31T23:59:59Z&st=2025-01-01T00:00:00Z&spr=https&sig=...';
CREATE EXTERNAL DATA SOURCE MyDataSource WITH (
LOCATION = 'wasbs://mycontainer@mystorageaccount.blob.core.windows.net',
CREDENTIAL = SasCredential
);