An individual w/ certificates for different DBMSs. Microsoft Certified Trainer who loves to learn, apply & share.
- Ankara, Turkiye
- herdemu.com
Pinned Loading
-
IO hunger queries, SQLServer
IO hunger queries, SQLServer 1/*
2Q. How can i find I/O intensive queries?
3A. You can list such queries by the help of 'sys.dm_exec_query_stats', 'sys.dm_exec_sql_text' and 'sys.dm_exec_query_plan'
45Hint. You can alter @RowSize value to manipulate row count of the result set
-
Cpu intensive queries, SQLServer
Cpu intensive queries, SQLServer 1/*
2Q. How can i list Cpu intensive queries?
3A. You can list such queries by the help of 'sys.dm_exec_query_stats', 'sys.dm_exec_sql_text' and 'sys.dm_exec_query_plan'
45Hint. Alter the @RowSize value to change the row count of the result set.
-
Slow queries in terms of Elapsed Tim...
Slow queries in terms of Elapsed Time, SQLServer 1/*
2Q. How can i retrieve slow queries in terms of elapsed time in second?
3A. You can list those queries by using 'sys.dm_exec_query_stats' with 'sys.dm_exec_sql_text' and 'sys.dm_exec_text_query_plan'
45Hint. By altering the @RecordCount value you can change the result set's row size
-
Extracting query from it's parent, S...
Extracting query from it's parent, SQLServer 1/*
2Q. How can i extract indivual query from it's parent?
3A. You can extract indivual query from it's parent by using offset values.
4When reading the script below, please note that while ISO has a zero-based offset
5the SUBSTRING function has a one-based offset.
-
Queries are running now, SQLServer
Queries are running now, SQLServer 1/*
2Q. How can i retrieve queries running now?
3A. You can list queries running now by using 'sys.dm_exec_requests', 'sys.dm_exec_sessions', 'sys.dm_exec_sql_text' and optionally 'sys.dm_exec_query_plan'
4*/
5 -
Queries have been executed frequentl...
Queries have been executed frequently, SQLServer 1/*
2Q. How can i determine the queries have been executed frequently?
3A. You can list such queries by the help of 'sys.dm_exec_query_stats', 'sys.dm_exec_sql_text' and 'sys.dm_exec_query_plan'
45Hint. You can alter @RowSize value to manipulate row count of the result set
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.