Where can i find documentation about wait types (SQL Server 2008 R2):
Select * from sys.dm_os_wait_stats where wait_type like 'PREEMPTIVE_OS%'
For example “PREEMPTIVE_OS_CRYPTIMPORTKEY”.
there is no such wait type documented in msdn..
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
SQL Server normally runs threads in cooperative multitasking. When it calls to the OS, it has to change to preemptive multitasking. So a
PREEMPTIVE_OS%wait means SQL Server is waiting for the OS to do something.You can find documentation for the thing it’s waiting on by stripping the
PREEMPTIVE_OS_part. For example, the documentation forCryptImportKeycan be found here.