How to look a single SQL Server query takes how much cpu time for completion
when i run the query via sql server management studio i want to see how much cpu time did this query consumed
it will be pretty low but i need to see for comparing different query loads
and it would be even greater if it is possible to run query 1000 times and see total consumed time
thank you
ok this is the full answer
set statistics time on
execute your query
set statistics time off
and after this you have to look messages window not results window