I’m working on SQL SERVER 2008 R2 Performance tunning part but I’m new in it.
How to calculate:
- CPU usage time
- Logical reads
- Writes
etc. made by a query or Stored Procedure.
Can someone help me with this?
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.
Grab Plan Explorer (it’s free), enter your EXEC call or query, and generate an actual execution plan. You will get all kinds of interesting metrics, including CPU and I/O. In addition to a much more usable plan than you get in Management Studio.
(Disclaimer: I used to work for SQL Sentry.)