How do you import the sample Oracle HR database into SQL Developer?

☆樱花仙子☆ 提交于 2019-12-02 08:02:53

Good news - I finally figured it out. I had to go into SQL Command Line, and then put in these commands( from this link) :

Type: connect

Enter user-name: system

Enter password:

Then, we need to unlock the HR :

SQL> ALTER USER hr ACCOUNT UNLOCK;

Then we make a password for this user :

SQL> ALTER USER hr IDENTIFIED BY <hr-password>;

So after this, I could access it from SQL Develloper. thanks

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!