Created
October 6, 2016 17:19
-
-
Save dotmaik1/7cf665c8a218d6bfd48e696a9b6d4e91 to your computer and use it in GitHub Desktop.
Alert log messages and timestamp
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| SET linesize 160 pagesize 200 | |
| col RECORD_ID FOR 9999999 head ID | |
| col ORIGINATING_TIMESTAMP FOR a20 head DATE | |
| col MESSAGE_TEXT FOR a120 head Message | |
| SELECT | |
| record_id, | |
| to_char(originating_timestamp,'DD.MM.YYYY HH24:MI:SS'), | |
| message_text | |
| FROM | |
| x$dbgalertext; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment