Previous |
Next |
Remove the components that you created for this tutorial.
To remove the components:
In SQL*Plus, connect as SYS
with the SYSDBA
privilege.
CONNECT SYS/AS SYSDBA
Enter password: password
Enter the following DROP
statements:
DROP USER mweiss; DROP USER wtaylor;
Do not drop user sec_admin
. You will need this user for other tutorials in this guide.
In SQL*Plus, connect as user sec_admin
.
CONNECT sec_admin
Enter password: password
Enter the following DROP
SQL statements:
DROP ROLE employee_role; DROP PROCEDURE sec_roles;
Connect as user HR
, and then drop the HR_VERIFY
table.
CONNECT HR
Enter password: password
DROP TABLE hr_verify;
Exit SQL*Plus.
EXIT