Langsung ke konten utama

SPID PROCESS SQL SERVER

View process in sql server
DECLARE @SPID INT ,@SQLScript NVARCHAR(max)
SELECT @SQLScript = CAST(TEXT AS NVARCHAR(max))
FROM sys.sysprocesses sp
CROSS APPLY sys.dm_exec_sql_text(sp.sql_handle)
WHERE sp.spid = @SPID
select @SQLScript
How to use :

  1. Check running process from sp_who2, get sp_id
  2. run scrib to view detail process running.

select * from [Sales].[Invoice.Vat.UpdateList] where convert(date,update_time)='2017-02-11'

Komentar

Postingan populer dari blog ini

sys.processes Status sp_who2 SQL Server

Taken from the books online reference for sys.processes  and the status column. dormant = SQL Server is resetting the session. running = The session is running one or more batches. When Multiple Active Result Sets (MARS) is enabled, a session can run multiple batches. For more information, see Using Multiple Active Result Sets (MARS). background = The session is running a background task, such as deadlock detection. rollback = The session has a transaction rollback in process. pending = The session is waiting for a worker thread to become available. runnable = The task in the session is in the runnable queue of a scheduler while waiting to get a time quantum. spinloop = The task in the session is waiting for a spinlock to become free. suspended = The session is waiting for an event, such as I/O, to complete.