Implementing a SQL Data Warehouse — Question 34

Note: This question is part of a series of questions that use the same or similar answer choices. An answer choice may be correct for more than one question in the series. Each question is independent of the other questions in this series. Information and details provided in a question apply only to that question.
You have a database named DB1 that has change data capture enabled.
A Microsoft SQL Server Integration Services (SSIS) job runs once weekly. The job loads changes from DB1 to a data warehouse by querying the change data capture tables.
You remove the Integration Services job.
You need to stop tracking changes to the database temporarily. The solution must ensure that tracking changes can be restored quickly in a few weeks.
Which stored procedure should you execute?

Answer options

Correct answer: C

Explanation

The correct answer is C, catalog.stop_operation, which is designed to halt change tracking operations temporarily. Other options either pertain to deploying or restoring projects, managing jobs that are not related to stopping tracking, or enabling/disabling the database's change data capture functionality, which does not meet the requirement of temporarily halting without permanent changes.