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

Caffeinated

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 database. I've been studying through these instructions to no avail.

So I have downloaded both Oracle Database 11g Express Edition, along with SQL Developer. And I can play with it and create a sample database. But I don't know how to use the HR database.

any tips appreciated. thanks

Caffeinated

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

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

How to run .sql file in Oracle SQL developer tool to import database?

Oracle Database 19c Sample Schemas :: import sample from Oracle SQL Developer GUI instead of command line

how to import a .dmp file in oracle sql developer

How to import Oracle SQL Developer export dates using SQLPlus

How do I generate random sample data in my Oracle database?

How do you import an accdb database from Access into SQL Server 2019?

Import Oracle .dmp file using SQL Developer

How do you give a <hr> a gradient color?

How do you change length of an hr tag?

How do I view the Explain Plan in Oracle Sql developer?

How to get a sample in Oracle SQL

Explore Oracle Database using SQL Developer

Unable to connect to Oracle database from SQL Developer

Exporting a Database using Oracle SQL Developer

How do you import a large MS SQL .sql file?

Which Oracle version is best for Windows 10 and how to check Database connection in Oracle Sql Developer

How to import database Oracle from large sql files

How do you find out the Oracle database's URL?

How do you connect to an Oracle ADW cloud database via Python?

SQL in Oracle HR Schema

How do you check the status of a SQL Import Export Operation in Azure?

Not able to connect to oracle database using Oracle SQL Developer

How do you retrieve the estimation sample in R?

How to connect to Azure Oracle 12c Database using sqlplus or sql developer cloud connection

How to create Oracle 19C Database SQL Developer New Connection?

generating sql trace file from sql developer in Oracle Database

how do i pass a sql query into a python script that connects to sql oracle developer with all my login credentials”?

How do i import a mysql dump to SQL Server database

In Oracle SQL: How do you insert the current date + time into a table?