Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save dotmaik1/7cf665c8a218d6bfd48e696a9b6d4e91 to your computer and use it in GitHub Desktop.

Select an option

Save dotmaik1/7cf665c8a218d6bfd48e696a9b6d4e91 to your computer and use it in GitHub Desktop.
Alert log messages and timestamp
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