Script: Find Top 10 CPU Intensive Queries
This blog post first appeared on SQLMaestros If you want to find the top ānā queries that are currently in the cache, which are consuming more CPU, then you are at the right place. sys.dm_exec_query_stats [...]
Script: How to Identify Whether Optimizer is Reusing the Plans or Not
This blog post first appeared on SQLMaestros If you want to identify non parameterized queries that are hogging your SQL Server plan cache then you are at the right place. sys.dm_exec_query_stats DMV becomes very handy [...]
Script: Find FillFactor of All Indexes in a Database
This blog post first appeared on SQLMaestros In our previous blog posts, we have seen how to find fragmented indexes in a database and how to defrag them by using rebuild/reorganize. While creating or rebuilding [...]
Script: How to Defragment All The Indexes In a Database
This blog post first appeared on SQLMaestros In our previous blog post, we got to know, how to find out all fragmented indexes in a database. Now we will see how to defrag indexes. According [...]
Script: Find The Fragmented Indexes In A Database
This blog post first appeared on SQLMaestros We do create indexes to improve the search performance of our queries. But over a period of time, because of DML operations (inserts/deletes/updates), the data will get spread [...]
Script: Find Tables Without Clustered Index
This blog post first appeared on SQLMaestros Before we start fine tuning SQL Server, it is good to make sure all basic best practices are in place. One such best practice is to have a [...]