In SQL Server DMV table dm_exec_requests, should the following be true:
total_elapsed_time = cpu_time + wait_time
Thanks,
Rafi
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.
No it is not equal. As stated on MSDN:
and
As You can see, wait_time is duration of current wait and You may have multiple waits during query execution.