How to fix slow running query or report in SQL Server?
Common methods to resolve long running, CPU bound queries:
1. Examine the query plan of the query.
2. Update statistics .
3. Identify and apply missing indexes.
4. Redesign or rewrite the queries .
5.Identify and resolve parameter sensitive plans.
6.Identify and resolve SARG - ability issues.
Comments
Post a Comment