SQL Server Wait Events -1

Hi, You should find that which of wait events are in the SQL Server database.   To solve slowness of SQL Server database, you should find which wait events exists in the database. You can find wait events of database with following query.   with waits as (select wait_type, wait_time_ms / 1000.0 as waits, (wait_time_ms … Continue reading SQL Server Wait Events -1