Audit of Java Class, Resource, and Source
We are currently at 10.1.0.5 on Win@K3 server, and are implementing DIACAP requirements. One of the finding states we need to add auditing of objects and they gave us the script to implement this:
AUDIT ALL BY ACCESS;
AUDIT ALL PRIVILEGES BY ACCESS;
AUDIT ALTER JAVA CLASS BY ACCESS;
AUDIT ALTER JAVA RESOURCE BY ACCESS;
AUDIT ALTER JAVA SOURCE BY ACCESS;
When we try to run this in sqlplus, it gives us an error on the Java lines (Ora-00969: Missing ON keyword). According to the documentation I found on line, which was limited, this is the correct syntax. Anyone know why this is failing?
Thanks!