DP-203 Design and implement data storage • Set 10
DP-203 Design and implement data storage Practice Test 10 — 15 questions with explanations. Free, no signup.
Refer to the exhibit. A data engineer creates an external table in Azure Synapse Serverless SQL. Which statement about this table is correct?
Refer to the exhibit. CREATE EXTERNAL DATA SOURCE MyDataSource WITH ( LOCATION = 'abfss://container@storageaccount.dfs.core.windows.net', TYPE = HADOOP, CREDENTIAL = MyCredential ); CREATE EXTERNAL FILE FORMAT ParquetFormat WITH ( FORMAT_TYPE = PARQUET, DATA_COMPRESSION = 'org.apache.hadoop.io.compress.SnappyCodec' ); CREATE EXTERNAL TABLE dbo.Sales ( SaleID INT, ProductID INT, Quantity INT, SaleDate DATE ) WITH ( LOCATION = '/sales/', DATA_SOURCE = MyDataSource, FILE_FORMAT = ParquetFormat );