Oracle provides a sample HR (Human Resource) schema. Bu default this schema is locked and if you want to use this schema for learning purpose it need to be unlocked first. Follow these steps.
Replace <password> with the password you want to use. You just unlocked HR schema. Connect to HR schema and start learning.
Happy learning.
- Connect to database as system user (SYS AS SYSDBA) with the password provided during installation.
- Execute the following SQL statement.
ALTER USER HR IDENTIFIED BY <password> ACCOUNT UNLOCK;
Replace <password> with the password you want to use. You just unlocked HR schema. Connect to HR schema and start learning.
Happy learning.
Comments
Post a Comment