Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Sample database schema for Oracle

Tags:

oracle

sample

Are there any sample databases for Oracle like AdventureWorks for MS SQL? I've searched Oracle site but didn't find any sample database.

like image 317
GTD Avatar asked Jan 17 '10 11:01

GTD


1 Answers

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.

like image 104
APC Avatar answered Oct 23 '22 09:10

APC