행위

Wait event 포퍼먼스 뷰

DB CAFE

Dbcafe (토론 | 기여)님의 2019년 12월 19일 (목) 20:38 판
thumb_up 추천메뉴 바로가기


Dynamic Performance Views Containing Wait Event Statistics These dynamic performance views can be queried for wait event statistics:

V$ACTIVE_SESSION_HISTORY

The V$ACTIVE_SESSION_HISTORY view displays active database session activity, sampled once every second. See "Active Session History".

V$SESS_TIME_MODEL and V$SYS_TIME_MODEL

The V$SESS_TIME_MODEL and V$SYS_TIME_MODEL views contain time model statistics, including DB time which is the total time spent in database calls

V$SESSION_WAIT

The V$SESSION_WAIT view displays information about the current or last wait for each session (such as wait ID, class, and time).

V$SESSION

The V$SESSION view displays information about each current session and contains the same wait statistics as those found in the V$SESSION_WAIT view. If applicable, this view also contains detailed information about the object that the session is currently waiting for (such as object number, block number, file number, and row number), the blocking session responsible for the current wait (such as the blocking session ID, status, and type), and the amount of time waited.

V$SESSION_EVENT

The V$SESSION_EVENT view provides summary of all the events the session has waited for since it started.

V$SESSION_WAIT_CLASS

The V$SESSION_WAIT_CLASS view provides the number of waits and the time spent in each class of wait events for each session.

V$SESSION_WAIT_HISTORY

The V$SESSION_WAIT_HISTORY view displays information about the last ten wait events for each active session (such as event type and wait time).

V$SYSTEM_EVENT

The V$SYSTEM_EVENT view provides a summary of all the event waits on the instance since it started.

V$EVENT_HISTOGRAM

The V$EVENT_HISTOGRAM view displays a histogram of the number of waits, the maximum wait, and total wait time on an event basis.

V$FILE_HISTOGRAM

The V$FILE_HISTOGRAM view displays a histogram of times waited during single block reads for each file.

V$SYSTEM_WAIT_CLASS

The V$SYSTEM_WAIT_CLASS view provides the instance wide time totals for the number of waits and the time spent in each class of wait events.

V$TEMP_HISTOGRAM

The V$TEMP_HISTOGRAM view displays a histogram of times waited during single block reads for each temporary file.