Database/Oracle Database
[오라클] ALERT LOG 내용 DBGALERTEXT 뷰 시간별 조회
Dong538
2022. 2. 14. 17:14
col originating_timestamp for a30
col message_text for a75
-- 5시간 전부터 현재까지 alert log 조회
select originating_timestamp, message_text
from x$dbgalertext
where originating_timestamp >= sysdate - 5/24;