0% found this document useful (0 votes)
84 views

(Oracle Master Training) - Scripts To Unlock The HR Schema

This document contains SQL scripts to unlock the HR schema in an Oracle database. The scripts first connect to the database as SYSDBA, open the pluggable database container, save the state of the pluggable database, and then unlock and reset the password for the HR user account.

Uploaded by

Innovator Adrian
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
84 views

(Oracle Master Training) - Scripts To Unlock The HR Schema

This document contains SQL scripts to unlock the HR schema in an Oracle database. The scripts first connect to the database as SYSDBA, open the pluggable database container, save the state of the pluggable database, and then unlock and reset the password for the HR user account.

Uploaded by

Innovator Adrian
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

SCRIPTS TO UNLOCK THE HR SCHEMA A

sqlplus / as sysdba;
alter session set container=orclpdb;
alter pluggable database open;
alter pluggable database orclpdb save state;
alter user hr identified by hr account unlock;
/

You might also like