Are there any sample databases for Oracle like AdventureWorks for MS SQL? I've searched Oracle site but didn't find any sample database.
Asked
Active
Viewed 2.3k times
3 Answers
8
The Oracle database installation includes scripts to install sample schemas. Find out more.
Many online examples use the extremely simple EMP and DEPT tables. These tables are not part of the documented schemas listed above. Finding the script for the beloved SCOTT/TIGER schema is harder than you might think. The demobld.sql
used to be under the sqlplus sub-directory. Then in 10g (I think) they moved the schema to $ORACLE_HOME/admin/rdbms/scott.sql
. In 11gR2 it's moved again, to $ORACLE_HOME/admin/rdbms/utlsampl.sql
.

APC
- 144,005
- 19
- 170
- 281
-
1
-
@IainElder - I guess Oracle is having a re-org of their docs prior to the launch of version 12c. I've now fixed the broken link. – APC Jun 02 '13 at 12:25
5
This question can be of some help(?).
0
You can run Oracle Live SQL online without Oracle installed. Menu contains:
- SQL Worksheet
- My Session
- Schema. Includes SCOTT, HR, Order Entry (OE) and others.
- Quick SQL
- My Scripts
- Code Library
Contains a search function, scripts, and tutorials.

ExcessOperatorHeadspace
- 318
- 4
- 17