You have several tables, and they are joined together for querying. The tables contain both clustered indexes and non clustered indexes to optimize performance, how should you distribute the tables and their indexes onto different file groups?



You have several tables, and they are joined together for querying. The tables contain both clustere..

Answer / Priyanka Pethe

To improve performance when joining tables with a combination of clustered and non-clustered indexes, you can consider distributing them across multiple filegroups. Clustered indexes should be placed on separate filegroups to reduce the risk of fragmentation and improve read/write performance. Non-clustered indexes should be placed based on their usage patterns (frequently accessed indexes should reside on faster storage devices).

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More SQL Server Interview Questions

What is referential integrity and how is it achieved?

1 Answers   Adea Solutions,


What is forward - only cursors / read only cursor?

1 Answers  


What will happen if a column containing char type data is changed to the nchar data type?

1 Answers  


which table keeps the locking information? : Sql server administration

1 Answers  


Distinguish between commit and rollback?

1 Answers  


What is nested transaction?

1 Answers  


Explain acid?

1 Answers  


Do you know what are the differences between lost updates and uncommitted dependencies?

1 Answers  


What are the two virtual tables SQL Server maintains for triggers?

3 Answers  


what are the steps you will take, if you are tasked with securing an sql server? : Sql server database administration

1 Answers  


HOW TO RENAME A COLUMN NAME

3 Answers  


How to create a dynamic cursor with the dynamic option?

1 Answers  


Categories