
Ultimate access to all questions.
What describes when to use the CREATE STREAMING LIVE TABLE (formerly CREATE INCREMENTAL LIVE TABLE) syntax over the CREATE LIVE TABLE syntax when creating Delta Live Tables (DLT) tables using SQL?
A
CREATE STREAMING LIVE TABLE should be used when the subsequent step in the DLT pipeline is static.
B
CREATE STREAMING LIVE TABLE should be used when data needs to be processed incrementally.
C
CREATE STREAMING LIVE TABLE should be used when data needs to be processed through complicated aggregations.
D
CREATE STREAMING LIVE TABLE should be used when the previous step in the DLT pipeline is static.
Explanation:
Correct Answer: B
CREATE STREAMING LIVE TABLE (formerly CREATE INCREMENTAL LIVE TABLE) is specifically designed for incremental data processing scenarios in Delta Live Tables (DLT). Here's why:
Use CREATE STREAMING LIVE TABLE when you need to process data incrementally, especially for streaming workloads or when dealing with large datasets where full recomputation would be inefficient.