
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:
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 option B is correct:
Use CREATE STREAMING LIVE TABLE when you need to process data incrementally for better performance and resource efficiency, especially with high-volume, continuously arriving data.