oerr_all.txt

Comments
-
Hi,
what do you want to show with this ?
regards
Kay0 -
Hi,
what do you want to show with this ?
regards
KayI want to show all ora error codes.
A complete listing may be needed later.
0 -
I want to show all ora error codes.
A complete listing may be needed later.
The complete listing is here:
0 -
The complete listing is here:
The best solution probably to look into the manual and print it out if required.
If you want to have a script for this you might use some few lines of Code (Bash 4.0+ required) as the following:
for err in {1..20000..1} do oerr ora $err done
0