From the course: End-to-End Real-World Data Engineering Project with Snowflake

Unlock this course with a free trial

Join today to access over 24,900 courses taught by industry experts.

Create the stream in Snowflake to capture Product table changes

Create the stream in Snowflake to capture Product table changes - Snowflake Tutorial

From the course: End-to-End Real-World Data Engineering Project with Snowflake

Create the stream in Snowflake to capture Product table changes

- [Instructor] On similar lines, to identify the changes all the new rows got coming in in our product table, we need to create the stream for the product table as well. Now, to create the stream for the product table, we can just go and execute this query. Create or replace stream, and give the product stream name as product_changes_stream on table raw_product. So important clause here is, on table, which is saying that it is going to watch this raw_product table for identifying any new changes are coming in. Let's just execute this. And then, our product_changes_stream got created.

Contents