In an Oracle database there is a sample user called “HR”. This user comes with a schema which contains data which is quite convenient for demo purposes.
You can unlock this user using the following steps:
- Connect to your database with the system user
- Execute the following command (Note: replace “password” with your password)
ALTER USER HR IDENTIFIED BY password ACCOUNT UNLOCK;
- Log in to the database with the HR user and your specified password
You can use this user for tutorials / demo’s in almost all Oracle databases since the tables are all equal.
Ps. I’ve posted this small tutorial mainly because it will serve as a prerequisite for other tutorials.