Which Snowflake object can be used to record DML changes made to a table?
Which Snowflake object can be used to record DML changes made to a table?
A Stream object in Snowflake is used to record DML (data manipulation language) changes made to a table. Streams track changes such as inserts, updates, and deletes, allowing for further action on these changes. This makes them the correct object for recording DML changes in Snowflake.
https://docs.snowflake.com/en/user-guide/streams
A stream object records data manipulation language (DML) changes made to tables, including inserts, updates, and deletes, as well as metadata about each change, so that actions can be taken using the changed data.
C correct
Correct