c# - How to find the execution time of a piece of code? -
c# code
is possible find execution time of set of code in visual studio?
if visual studio provide tools alternatives?
are there free reliable tools download?
sql server management studio
is possible find execution time of set of code in sql server management studio?
if sql server management studio provide tools alternatives?
are there free reliable tools download?
thanks
for ssms query execution time in miliseconds in sql server management studio
if need query execution time in milliseconds in sql server management studio, there simple way achieve this.
set statistics time on -- query set statistics time off
this result in following lin in messages window:
sql server execution times: cpu time = 16 ms, elapsed time = 16 ms.
Comments
Post a Comment