TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
SQL Query Time Execute Check
Ashish Srivastava
Dec 16, 2015
4.9
k
0
0
facebook
twitter
linkedIn
Reddit
WhatsApp
Email
Bookmark
This code snippet is for Sql query max time execute check.
SELECT
qs.total_elapsed_time / qs.execution_count / 1000000.0
AS
average_seconds,
qs.total_elapsed_time / 1000000.0
AS
total_seconds,
qs.execution_count,
SUBSTRING
(qt.text,qs.statement_start_offset/2,
(
CASE
WHEN
qs.statement_end_offset = -1
THEN
LEN(
CONVERT
(NVARCHAR(
MAX
), qt.text)) * 2
ELSE
qs.statement_end_offset
END
- qs.statement_start_offset)/2)
AS
individual_query,
o.
name
AS
object_name,
DB_NAME(qt.dbid)
AS
database_name
FROM
sys.dm_exec_query_stats qs
CROSS
APPLY sys.dm_exec_sql_text(qs.sql_handle)
as
qt
LEFT
OUTER
JOIN
sys.objects o
ON
qt.objectid = o.object_id
WHERE
qt.dbid = DB_ID()
ORDER
BY
average_seconds
DESC
;
Working Preview:
SQL query time
execute check
SQL Server
Next Recommended Reading
Get Latest Executed Queries In SQL Server