June 2016
Intermediate to advanced
388 pages
5h 49m
English
In this recipe, you're going to create two users (for example, jack and jill). Jack's job is to implement auditing requirements and to make sure that auditing is functioning properly. Jill is an auditor and her job is to analyze audit data.
To complete this recipe, you'll need an existing user who has the DBA role (for example, maja).
maja):
$ sqlplus maja
jack and grant him the create session privilege and the audit_admin role.
SQL> create user jack identified by pQ3s7a4w2;
SQL> grant create session, audit_admin to jack;
jill ...Read now
Unlock full access