the 10 tips helps you start on performance tuning in Microsoft SQL Server Tuning.
For the complete explanation, I refer to the original blog
Here's a short overview of the tips:
- Stop waiting around
Check the SQL wait statistics to recognize the bottlenecks - Locate I/O bottlenecks
Find I/O bottlenecks, as they are one of the key reasons for bad SQL performance - Root out problem queries
Find the most expensive queries - plan to reuse
Determine the statements that are not reusing query execution plans - Monitor index usage
Evaluate the usage of all indexes - seperate data and log files
Make sure the data and the log files are on separate physical drives - use seperate staging databases
Use a seperate database in simple recovery model for all initial imports to minimize the transaction logging - Pay attention to log files
Make sure there is plenty of free space in the log file to avoid the auto-grow operation as much as possible - Minimize tempdb contention
Optimize your tempdb files - Change the max memory limit
Make sure you configure the correct max memory setting
Source: Top 10 Performance Tips for SQL Server
Geen opmerkingen:
Een reactie posten