Home > Database > Mysql Tutorial > 查询SQL Server正在执行的语句

查询SQL Server正在执行的语句

WBOY
Release: 2016-06-07 14:58:09
Original
1818 people have browsed it

查询SQLServer正在执行的语句 无 SELECT [Spid] = session_Id,ecid,[Database] = DB_NAME(sp.dbid),[User] = nt_username,[Status] = er.STATUS,[Wait] = wait_type,[Individual Query] = SUBSTRING(qt.TEXT, er.statement_start_offset / 2, (CASE WHEN er.s

查询SQL Server正在执行的语句
SELECT [Spid] = session_Id
	,ecid
	,[Database] = DB_NAME(sp.dbid)
	,[User] = nt_username
	,[Status] = er.STATUS
	,[Wait] = wait_type
	,[Individual Query] = SUBSTRING(qt.TEXT, er.statement_start_offset / 2, (
			CASE 
				WHEN er.statement_end_offset = - 1
					THEN LEN(CONVERT(NVARCHAR(MAX), qt.TEXT)) * 2
				ELSE er.statement_end_offset
				END - er.statement_start_offset
			) / 2)
	,[Parent Query] = qt.TEXT
	,Program = program_name
	,Hostname
	,nt_domain
	,start_time
FROM sys.dm_exec_requests er
INNER JOIN sys.sysprocesses sp ON er.session_id = sp.spid
CROSS APPLY sys.dm_exec_sql_text(er.sql_handle) AS qt
WHERE session_Id > 50 /* Ignore system spids.*/
	AND session_Id NOT IN (@@SPID)
Copy after login
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template