轉載--V$ACTIVE_SESSION_HISTORY檢視的使用
V$ACTIVE_SESSION_HISTORY
顯示資料庫中的取樣會話活動。ASH每秒從v$session中取快照,存在V$ACTIVE_SESSION_HISTORY中,並收集所有活動會話的等待資訊。若ASH資料被重新整理到磁碟,則需要從DBA_HIS_ACTIVE_SESS_HISTORY檢視中查詢相關資訊。
該檢視是ASH的核心,用以記錄活動SESSION的歷史等待資訊,每秒取樣一次,這部分內容記錄在記憶體中,期望值是記錄一個小時的內容。
列名 | 資料型別 | 說明 |
---|---|---|
SAMPLE_ID |
NUMBER |
樣本的ID |
SAMPLE_TIME |
TIMESTAMP(3) |
取樣本的時間 |
SESSION_ID |
NUMBER |
會話識別符號; 對映到 V$SESSION.SID |
SESSION_SERIAL# |
NUMBER |
會話序列號 (用於唯一標識一個會話的物件); 對映到 V$SESSION.SERIAL# |
USER_ID |
NUMBER |
Oracle使用者識別符號; 對映到 V$SESSION.USER# |
SQL_ID |
VARCHAR2(13) |
會話在取樣時執行的 SQL 語句的 SQL 識別符號
|
SQL_CHILD_NUMBER |
NUMBER |
Child number of the SQL statement that the session was executing at the time of sampling |
SQL_PLAN_HASH_VALUE |
NUMBER |
sql遊標計劃的數值表示形式。這所有會話樣本的資訊可能不可用。v$session不包含此資訊。
|
FORCE_MATCHING_SIGNATURE |
NUMBER |
The signature used when the CURSOR_SHARING parameter is set to FORCE |
SQL_OPCODE |
NUMBER |
Indicates what phase of operation the SQL statement was in; maps to V$SESSION.COMMAND 。 “V$SESSION” for
information on interpreting this column |
SERVICE_HASH |
NUMBER |
Hash that identifies the Service; maps to V$ACTIVE_SERVICES.NAME_HASH |
SESSION_TYPE |
VARCHAR2(10) |
會話型別:
|
SESSION_STATE |
VARCHAR2(7) |
會話狀態:
|
QC_SESSION_ID |
NUMBER |
查詢協調器的會話ID。This information is only available if the sampled session is a parallel query slave. For all other sessions, the value is 0 . |
QC_INSTANCE_ID |
NUMBER |
查詢協調器例項的ID。 This information is only available if the sampled session is a parallel query slave. For all other sessions, the value is 0 . |
BLOCKING_SESSION |
NUMBER |
阻塞會話的會話識別符號。Populated only when the session was waiting for enqueues or a “buffer busy” wait. Maps toV$SESSION.BLOCKING_SESSION . |
BLOCKING_SESSION_STATUS |
VARCHAR2(11) |
阻塞會話的狀態:
|
BLOCKING_SESSION_SERIAL# |
NUMBER |
阻塞會話的序列號 |
EVENT |
VARCHAR2(64) |
If SESSION_STATE = WAITING , then
the event for which the session was waiting for at the time of sampling.If SESSION_STATE = ON
CPU , then this column will be NULL.See Also: “Oracle Wait Events” |
EVENT_ID |
NUMBER |
Identifier of the resource or event for which the session is waiting or for which the session last waited. Interpretation is similar to that of theEVENT column. |
EVENT# |
NUMBER |
Number of the resource or event for which the session is waiting or for which the session last waited. Interpretation is similar to that of theEVENT column. |
SEQ# |
NUMBER |
序列號唯一標識等待(增加每個等待) |
P1TEXT |
VARCHAR2(64) |
第一個附加引數的文字 |
P1 |
NUMBER |
第一個附加引數 |
P2TEXT |
VARCHAR2(64) |
第二個引數的文字 |
P2 |
NUMBER |
第二個附加引數 |
P3TEXT |
VARCHAR2(64) |
第三個附加引數的文字 |
P3 |
NUMBER |
第三個附加引數 |
WAIT_CLASS |
VARCHAR2(64) |
Wait class name of the event for which the session was waiting at the time of sampling. Interpretation is similar to that of the EVENT column. Maps
to V$SESSION.WAIT_CLASS . |
WAIT_CLASS_ID |
NUMBER |
等待的會話在等待的時間取樣的事件的類識別符號。Interpretation is similar to that of the EVENT column. Maps to V$SESSION.WAIT_CLASS_ID . |
WAIT_TIME |
NUMBER |
0 if the session was waiting at the time of samplingTotal wait time for the event for which the session last waited if the session was on the CPU
when sampledWhether or not WAIT_TIME = 0 is
what is useful to find the SESSION_STATE at the time of sampling, rather than the actual value of WAIT_TIME itself. Maps
to V$SESSION.WAIT_TIME . |
TIME_WAITED |
NUMBER |
If SESSION_STATE = WAITING , then
the time that the session actually spent waiting for that EVENT. This column is set for waits that were in progress at the time the sample was taken.If a wait event lasted for more than a second and was caught waiting in more than one session sample row, then
the actual time spent waiting for that wait event will be populated in the last of those session sample rows. At any given time, this information will not be available for the latest session sample. |
XID |
RAW(8) |
Transaction ID that the session was working on at the time of sampling. V$SESSION does not contain this information. |
CURRENT_OBJ# |
NUMBER |
物件ID的會話被引用的物件。此資訊僅供如果會話在等待申請,叢集,併發和使用者I / O等待事件。對映到 V$SESSION.ROW_WAIT_OBJ# . |
CURRENT_FILE# |
NUMBER |
File number of the file containing the block that the session is referencing. This information is only available if the session was waiting for Cluster, Concurrency, and User I/O wait events. Maps to V$SESSION.ROW_WAIT_FILE# . |
CURRENT_BLOCK# |
NUMBER |
ID of the block that the session is referencing. This information is only available if the session was waiting for Cluster, Concurrency, and User I/O wait events. Maps to V$SESSION.ROW_WAIT_BLOCK# . |
PROGRAM |
VARCHAR2(48) |
作業系統程式的名稱 |
MODULE |
VARCHAR2(48) |
Name of the executing module when sampled, as set by the DBMS_APPLICATION_INFO.SET_MODULE procedure |
ACTION |
VARCHAR2(32) |
Name of the executing module when sampled, as set by the DBMS_APPLICATION_INFO.SET_ACTION procedure |
CLIENT_ID |
VARCHAR2(64) |
Client identifier of the session; maps to V$SESSION.CLIENT_IDENTIFIER |
SELECT sql_id, count(*),
round(count(*)
/ sum(count(*))
over(), 2)
pctload
FROM V$ACTIVE_SESSION_HISTORY
WHERE sample_time
> sysdate – 1 /
(24 * 60)
AND session_type
<> 'BACKGROUND’
AND session_state
= 'ON CPU’
GROUP BY sql_id
ORDER BY count(*) desc;
SELECT ash.sql_id,count(*)
FROM V$ACTIVE_SESSION_HISTORY
ASH,V$EVENT_NAME EVT
WHERE ash.sample_time
> sysdate -1/(24*60)
AND ash.session_state
= 'WAITING’
AND ash.event_id
= evt.event_id
AND evt.wait_class
= 'USER I/O’
GROUP BY ash.sql_id
ORDER BY count(*) desc;
SELECT session_id,count(*)
FROM V$ACTIVE_SESSION_HISTORY
WHERE session_state = 'ON
CPU’
AND sample_time
> sysdate -1/(24*60)
GROUP BY session_id
ORDER BY count(*) desc;
SELECT ash.sql_id,
sum(decode(ash.session_state,'ON
CPU’,1,0)) “CPU”,
sum(decode(ash.session_state,'WAITING’,1,0)) -
sum(decode(ash.session_state,'WAITING’,decode(en.wait_class,'USER
I/O’,1,0),0)) “WAIT”,
sum(decode(ash.session_state,'WAITING’,decode(en.wait_class,'USER
I/O’,1,0),0)) “IO”,
sum(decode(ash.session_state,'ON
CPU’,1,1)) “TOTAL”
FROM V$ACTIVE_SESSION_HISTORY
ASH,V$EVENT_NAME EN
WHERE SQL_ID
is not null and en.event#=ash.event# and ash.sample_time > sysdate -1/(24*60)
GROUP BY ash.sql_id
ORDER BY sum(decode(ash.session_state,'ON
CPU’,1,1)) desc;
SELECT ash.session_id,ash.session_serial#,ash.user_id,ash.program,
sum(decode(ash.session_state,'ON
CPU’,1,0)) “CPU”,
sum(decode(ash.session_state,'WAITING’,1,0))
-
sum(decode(ash.session_state,'WAITING’,decode(en.wait_class,'USER
I/O’,1,0),0)) “WAITING”,
sum(decode(ash.session_state,'WAITING’,decode(en.wait_class,'USER
I/O’,1,0),0)) “IO”,
sum(decode(ash.session_state,'ON
CPU’,1,1)) “TOTAL”
FROM V$ACTIVE_SESSION_HISTORY ASH,V$EVENT_NAME
EN
WHERE en.event#
= ash.event# and ash.sample_time > sysdate -1/(24*60)
GROUP BY ash.session_id,ash.user_id,ash.session_serial#,ash.program
ORDER BY sum(decode(ash.session_state,'ON
CPU’,1,1))
相關文章
- V$ACTIVE_SESSION_HISTORY檢視的使用Session
- [20211214]檢視檢視V$ACTIVE_SESSION_HISTORY遇到奇怪問題.txtSession
- [轉載]SQLServer之檢視簡介SQLServer
- (轉載)iOS中獲取某個檢視的截圖iOS
- 檢視V$DATAGUARD_STATS
- 轉:Linux檢視GPU資訊和使用情況LinuxGPU
- odoo檢視入門學習- tree檢視的使用Odoo
- 將檢視轉為表
- [20211019]V$DETACHED_SESSION檢視.txtSession
- 資料庫檢視的使用資料庫
- 使用Excel的2個檢視Excel
- docker 容器的使用與檢視Docker
- linux:檢視使用中的埠Linux
- [20200212]使用DBMS_SHARED_POOL.MARKHOT與檢視v$open_cursor.txt
- [20210528]V$INDEXED_FIXED_COLUMN檢視.txtIndex
- [20210418]查詢v$檢視問題.txt
- 檢視mysql 的binlog日誌存放的位置(轉)MySql
- dwg檢視器使用技巧(方便好用的dwg檢視器推薦 )
- 使用netstat命令檢視埠的使用情況
- 檢視macOS下正在使用的zshMac
- 檢視oracle資料庫的連線數以及使用者檢視Oracle資料庫
- DataGridView使用 --轉載View
- 【轉】改變檢視頁面原始碼的程式原始碼
- SpringMVC-RequestContextHolder的使用 -- 轉載SpringMVCContext
- ubuntu檢視硬碟掛載情況Ubuntu硬碟
- Linux 如何檢視系統負載Linux負載
- 探索Android檢視載入器LayoutInflaterAndroid
- Gif(2)-載入檢視-波紋
- 選擇使用通用檢視(Generic Views)或檢視集(ViewSets)View
- 11 UML中的邏輯檢視、程序檢視、實現檢視、部署檢視
- 使用iostat檢視磁碟IOiOS
- 在DataLakeAnalytics中使用檢視
- 怎麼檢視python下載是多少位的Python
- 使用 gdb 檢視 coredump 檔案的 backtrace
- Tidb 運維--叢集檢視的使用TiDB運維
- 如何檢視網頁元素使用的js網頁JS
- Oracle物化檢視的建立及使用(二)Oracle
- Oracle物化檢視的建立及使用(一)Oracle
- 22. 使用MySQL之使用檢視MySql