Question 182:
You are trying to load data from Azure Data Lake Storage (ADLS) to dedicated SQL pools in Azure Synapse Analytics. The following SQL Statement was run to create a target table in a dedicated SQL Pool. CREATE TABLE [dbo].[DimProduct] ( [ProductKey] [int] NOT NULL, [ProductLabel] [nvarchar](255) NULL, [ProductName] [nvarchar](500) NULL ) WITH ( DISTRIBUTION = HASH([ProductKey]), CLUSTERED COLUMNSTORE INDEX ); After that, a copy statement was run while connected to SQL dedicated pool and completed copying from ADLS. But you find some data rows are not compressed as it was in the beginning. What will be the solution for this?
Answer options:
A.create single-columns statistics B.Run “ALTER INDEX ALL ON [dbo].[DimProduct] REBUILD;” C.Drop the target table and recreate D.None of the above