2023年8月30日 星期三

[SQL]查詢sql server中使用狀態不是睡眠而是運行中的CPU狀態

以下語法 從記憶體取得資訊

並且可查看詳細資訊 



select * from sys.sysprocesses as a cross apply sys.dm_exec_sql_text( a.sql_handle )

where spid >50 and status <> 'sleeping'

order by cpu desc

沒有留言:

張貼留言

[SQL]顯示千分位與小數顯示

  CONVERT ( data_type [ ( length ) ] , expression [ , style ] ) CONVERT style參數說明 1  (expression為 money 或 smallmoney型別): 0 : 預設,保留小數位後兩位,並四捨...