adplus-dvertising

Welcome to the Performance Tuning and Optimization MCQs Page

Dive deep into the fascinating world of Performance Tuning and Optimization with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of Performance Tuning and Optimization, a crucial aspect of SQL Server. In this section, you will encounter a diverse range of MCQs that cover various aspects of Performance Tuning and Optimization, 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 Performance Tuning and Optimization. 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 Performance Tuning and Optimization. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

Performance Tuning and Optimization MCQs | Page 10 of 12

Q91.
Which of the following compression type is supported by SQL Server 2014?
Discuss
Answer: (c).Both row and column
Discuss
Answer: (d).All of the mentioned
Q93.
Use _________ data compression to compress columnstore data with archival compression.
Discuss
Answer: (b).COLUMNSTORE_ARCHIVE
Q94.
To remove archival compression and restore the data to columnstore compression _____________
Discuss
Answer: (a).Use ALTER TABLE
Discuss
Answer: (a).You can enable or disable ROW or PAGE compression in online state only
Q96.
The data_compression and data_compression_desc columns include ___________
Discuss
Answer: (c).COLUMNSTORE
Discuss
Answer: (b).EXEC sp_estimate_compression_savings 'Production', 'TransactionHistory', NULL, NULL, 'ROW' ;

ALTER TABLE Production.TransactionHistory REBUILD PARTITION = ALL
WITH (DATA_COMPRESSION = ROW);
Q98.
What is the purpose of schema name in the following code syntax?
sp_estimate_data_compression_savings 
     [ @schema_name = ] 'schema_name'  
   , [ @object_name = ] 'object_name' 
   , [@index_id = ] index_id 
   , [@partition_number = ] partition_number 
   , [@data_compression = ] 'data_compression' 
[;]
Discuss
Answer: (b).Name of the database schema
Q99.
sp_estimate_data_compression_savings requires ______ permission on the table.
Discuss
Answer: (b).SELECT
Discuss
Answer: (a).EXEC sp_estimate_data_compression_savings ‘Production’, ‘WorkOrderRouting’, NULL, NULL, ‘ROW’ ;
Page 10 of 12

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!