How to test performance of the stored procedure in SQL Server Management Studio -


i want details time taken execution of stored procedure. have tried cleaning db cache, getting difference in seconds resolution only.

is there build in method or tool of sql server detail statistics performance of stored procedure?

you can use profiler capture information (including duration) sp , individual queries in it. can use display actual execution plan how queries executed.

  • to launch profiler ssms go tools->"sql server profiler"
  • to "display actual execution plan" go query->"display actual execution plan"

Comments

Popular posts from this blog

python - Selenium remoteWebDriver (& SauceLabs) Firefox moseMoveTo action exception -

html - How to custom Bootstrap grid height? -

angular - Copying node modules to wwwroot AspNetCore -