CONNECT TO YOUR DATABASE AS USER SYSTEM AND CREATE A USER AND A TABLE TO BE USED FOR THE EXERCISE

1. Connect to your database as user SYSTEM and create a user and a table to be

used for the exercise:

create user auditor identified by oracle;create table system.audi as select * from all_users;grant create session, select any table to auditor;grant select on audi to auditor;