adplus-dvertising

Welcome to the Monitoring and Auditing MCQs Page

Dive deep into the fascinating world of Monitoring and Auditing with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Monitoring and Auditing, a crucial aspect of SQL Server. In this section, you will encounter a diverse range of MCQs that cover various aspects of Monitoring and Auditing, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within SQL Server.

frame-decoration

Check out the MCQs below to embark on an enriching journey through Monitoring and Auditing. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of SQL Server.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of Monitoring and Auditing. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

Monitoring and Auditing MCQs | Page 8 of 10

Discuss
Answer: (c).USE AdventureWorks
GO
EXEC sys.sp_cdc_enable_table
@source_schema = N'HumanResources',
@source_name = N'Shift',
@role_name = NULL
GO
Discuss
Answer: (b).Change data capture requires exclusive use of the cdc schema and cdc user
Q73.
Which of the following disable database for Change Data Capture?
Discuss
Answer: (c).EXEC sys.sp_cdc_disable_db
Q74.
If you do not want to use a gating role, explicitly set the @role_name parameter to ______________
Discuss
Answer: (b).NULL
Discuss
Answer: (a).By default, all of the columns in the source table are not identified as captured columns
Discuss
Answer: (a).SELECT * from sys.dm_cdc_log_scan_sessions where empty_scan_count <> 0
Discuss
Answer: (c).USE MyDB
GO
EXEC sys.sp_cdc_enable_table
@source_schema = N'dbo',
@source_name = N'MyTable',
@role_name = NULL,
@supports_net_changes = 1
GO
Discuss
Answer: (a).\USE MyDB
GO
EXEC sys.sp_cdc_enable_table
@source_schema = N'dbo',
@source_name = N'MyTable',
@role_name = N'MyRole',
@supports_net_changes = 1
GO
Discuss
Answer: (a).(maxtrans * maxscans) / number of seconds between scans
Q80.
The cleanup job is initiated by running the parameterless stored procedure is ___________
Discuss
Answer: (a).sp_MScdc_cleanup_job
Page 8 of 10

Suggested Topics

Are you eager to expand your knowledge beyond SQL Server? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!