메뉴 건너뛰기

Korea Oracle User Group

Guru's Articles

V$EVENT_NAME 뷰의 Name 컬럼에 정의된 event name에서 오는 오해

 

오라클 wait event 명칭은 원래 오라클 rdbms 개발자들이 사용하였었다.

하지만 현재는 데이터베이스 성능 이슈에 대한 분석을 위해서 여러 방면에서 사용되고 있다.

태생적으로 관점의 차이가 있을 수 있고 이로인해 명칭이 사용자에게는 현상을 명확히 표시해 주지 못하기도 한다.


하지만 12c 버전에는 V$EVENT_NAME 뷰의 DISPLAY_NAME 컬럼에 사용자의 혼란을 줄여줄 만한 명칭을 적시하고 있다.

 

 

SQL> select wait_class,name
           ,display_name 
     from v$event_name 
     where display_name != name 
     order by 1,2;

 

WAIT_CLASS      NAME                                 DISPLAY_NAME
--------------  -----------------------------------  ----------------------------------------------
Administrative  concurrent I/O completion            online move datafile IO completion
Administrative  datafile copy range completion       online move datafile copy range completion
Administrative  wait for possible quiesce finish     quiesce database completion
Commit          log file sync                        commit: log file sync
Configuration   log buffer space                     log buffer full - LGWR bottleneck
Idle            LGWR real time apply sync            standby apply advance notification
Other           DFS db file lock                     quiesce for datafile offline
Other           Image redo gen delay                 redo resource management
Other           datafile move cleanup during resize  online move datafile resize cleanup
System I/O      control file sequential read         control file read
System I/O      control file single write            control file write
System I/O      db file parallel write               db list of blocks write
System I/O      log file parallel write              log file redo write
System I/O      log file sequential read             log file multiblock read
System I/O      log file single write                log file header write
User I/O        db file parallel read                db list of blocks read
User I/O        db file scattered read               db multiblock read
User I/O        db file sequential read              db single block read
User I/O        db file single write                 db single block write                      

 

위의 예 외에도 각 이벤트의 DISPLAY_NAME을 조회할 수 있으니 내용을 확인해 보기 바란다

 

출처 : https://blog.dbi-services.com/misleading-wait-event-names-clarified-in-vevent_name/

번호 제목 글쓴이 날짜 조회 수
공지 Guru's Article 게시판 용도 ecrossoug 2015.11.18 601
24 11.1.0.6 부터 지원하는 Oracle Online Patching New Feature 명품관 2016.04.22 522
23 DDL Logging - 12c (조나단 루이스) 명품관 2016.04.26 1497
22 On ROWNUM and Limiting Results (오라클 매거진 : AskTom) 명품관 2016.04.28 384
21 How to Recover Data (Without a Backup!) 명품관 2016.05.11 1355
20 How to change the database name in 12c 명품관 2016.05.31 1959
19 Can I apply a BP on top of a PSU? Or vice versa? 명품관 2016.06.01 396
» V$EVENT_NAME 뷰의 Name 컬럼에 정의된 event name에서 오는 오해 명품관 2017.03.08 367
17 Different MOS Notes for xTTS PERL scripts – Use V4 scripts 명품관 2019.01.29 446
16 New Features in Oracle Database 19c 명품관 2019.02.02 540
15 New Features of Backup & Recovery in Oracle Database 19c 명품관 2019.02.07 429
14 New Features in Oracle Multitenant 19c 명품관 2019.02.07 740
13 Patch conflicts 명품관 2019.02.07 967
12 New Features of Security in Oracle Database 19c 명품관 2019.02.08 5045
11 New Features of Data Guard in Oracle Database 19c 명품관 2019.02.08 2001
10 New Features of RAC & ASM in Oracle 19c 명품관 2019.02.08 945
9 New Features of Performance Tuning in Oracle Database 19c 명품관 2019.02.08 915
8 More New Features in Oracle Database 19c 명품관 2019.02.08 6584
7 New initialization parameters, data dictionary views & dynamic performance views in Oracle Database 19c 명품관 2019.02.08 1910
6 SQL Tuning Workshop 명품관 2020.02.20 8153
5 SQL Window Functions Cheat Sheet 명품관 2020.05.26 436
위로