檢視執行SQL效果,消耗資源的SQL檢視命令

2022-09-16 12:54:12 字數 377 閱讀 8633

set statistics io on

set statistics time on

/*--你的sql指令碼開始*/

select * from table

/*--你的sql指令碼結束*/

set statistics profile off

set statistics io off

set statistics time off

scan count (掃瞄數), logical reads(邏輯讀)

1、分析、編譯和執行查詢所需的時間

2、語句內引用的每個表的掃瞄數、邏輯讀取數(在快取記憶體中訪問的頁數)和物理讀取數(訪問磁碟的次數)

3、每個查詢執行後的結果集'

oracle 實時查詢消耗資源SQL

1.先通過top命令檢視產用資源較多的pid號,注意 top命令的user的oacle的,關注pid 2.查詢當前耗時的會話id,使用者名稱,sqlid等 其中top中的pid就是v process的spid字段值。不是v process檢視中的pid值。select sid,serial mach...

sqlserver定位消耗資源比較高的sql

sqlserver檢視消耗資源的sql 具體如下 可以使用sql 快速定位資料庫裡cpu,io 消耗比較高的sql 1.定位消耗cpu,io 最高的程序資訊 selectspid,dbid,cpu,physical io,login time,last batch,status,hostname,p...

如何找出消耗資源的sql語句

cpu高的sql select sql text from v sql order by cpu time desc 邏輯讀多的sql select from select buffer gets,sql text from v sqlarea where buffer gets 500000 or...