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

后端 未结 1 1060
慢半拍i
慢半拍i 2021-01-28 02:12

EDIT: I think I\'m close to solving this now. i will self-answer if so

I\'ve been stuck on this for a while now - I want to use the sample Oracle Human Resources databas

相关标签:
1条回答
  • 2021-01-28 02:19

    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

    0 讨论(0)
提交回复
热议问题