2026-03-12 20:23:15

This commit is contained in:
root
2026-03-12 21:23:47 +01:00
parent eab4b36eca
commit 93039b8489
3332 changed files with 699614 additions and 0 deletions

12
tpt/alog.sql Normal file
View File

@@ -0,0 +1,12 @@
-- Licensed under the Apache License, Version 2.0. See LICENSE.txt for terms & conditions.
COL originating_timestamp FOR a25
COL message_text FOR a100
SELECT to_char(originating_timestamp, 'yyyy-mm-dd hh24:mi:ss') AS originating_timestamp, message_text, container_name
FROM v$diag_alert_ext
WHERE component_id = 'rdbms'
AND originating_timestamp BETWEEN &1 AND &2
ORDER BY originating_timestamp;
CLEAR COLUMNS