Additional SQL Server features and topics not covered by specific categories
Hi @pdsqsql ,
If the percentage of CPU usage is more than 90, it will cause SQL server slower. Suggest you find out top usage CPU queries and adjust the queries. Please update statistics to maintain index fragmentation.
> it happened after DBCC check DB command which we run every early morning
If SQL server database is really large, DBCC Check DB command will have some performance issue. You can using PHYSICAL_ONLY option to shorter run-time for DBCC CHECKDB. Reduce the workload for DBCC. Please refer to MS document DBCC CHECKDB (Transact-SQL).
If you want to collect more information about the performance issue. You can using PSSDIAG to collect various logs and data files.
Please refer to MS blog PSSDIAG data collection utility to get more information.
Best regards,
Cathy
If the response is helpful, please click "Accept Answer" and upvote it, thank you.
