Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Test Database? 1

Status
Not open for further replies.

DrSeussFreak

Programmer
Feb 16, 2007
149
US
Does anyone know of a location for a oracle test database similar to SQL Servers Northwinds?
 

If yo have Oracle RDBMS installed, there are some demo schemas (aka M$ db's) you could install.

Find them unde the %ORACLE_HOME%/demo/schema

[3eyes]


----------------------------------------------------------------------------
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
 
as I am new to Oracle (coming from SQL Server) how exactly would I install these?
 

When you install Oracle db, it will ask if you want to create the demo database, if you did not choose this option, then:

Using the sql*plus utlility, you execute the provided
scripts.

There are several directories and each has a "demo" schema, for example to create the HR schema:

cd $OH/demo/human_resources
sqlplus system/manager
SQL>@hr_main.sql

[3eyes]


----------------------------------------------------------------------------
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top