A data engineering team is using a Snowflake stream to capture changes made to a source table named 'orders'. They want to only capture 'INSERT and 'UPDATE operations but exclude 'DELETE operations from being captured in the stream. Which of the following configurations will achieve this requirement? Assume the stream has already been created and is named 'orders_stream'.
Correct Answer: C
Snowflake streams can be configured to hide delete operations using the parameten Setting 'HIDE_DELETES = TRUE' will prevent delete operations from being exposed through the stream. Option A is incorrect as streams can be configured. Option B, while functional, adds an extra layer of complexity. Option D doesn't exist as a valid parameter for streams. Option E is a highly unconventional and unsupported approach.