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

23
tpt/oerrign.sql Normal file
View File

@@ -0,0 +1,23 @@
COL oerr_command_name HEAD SQL_COMMAND_NAME FOR A35
COL oerr_error_text HEAD ERROR_TEXT FOR A80 WORD_WRAP
WITH
FUNCTION errtext(oerr IN NUMBER)
RETURN VARCHAR2 IS
BEGIN
RETURN SQLERRM(-oerr);
END;
SELECT
e.error_number oraerr
-- , c.command_type cmd
, c.command_name oerr_command_name
, errtext(e.error_number) oerr_error_text
FROM
v$app_ignorable_errors e
, v$sqlcommand c
WHERE
e.command_type = c.command_type
ORDER BY
error_number
/