
Ultimate access to all questions.
Which of the following 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 is redundant for DLT and it does not need to be used.
D
CREATE STREAMING LIVE TABLE should be used when data needs to be processed through complicated aggregations.
E
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) should be used when data needs to be processed incrementally. This syntax is specifically designed for streaming or incremental data processing scenarios in Delta Live Tables (DLT).
Why this is correct:
Why other options are incorrect:
Key Takeaway: Use CREATE STREAMING LIVE TABLE when you need to process data incrementally (streaming data, CDC, or batch updates), and use CREATE LIVE TABLE for static, batch-oriented processing where the entire dataset is processed at once.