Sample databases

I am used to working with SQL Server 2005 and now working in SQL Server 2008.
I have used Oracle 10g and 11g in the past but would like to dive into PL/SQL
SQL Server has always provided a sample database called AdventureWorks and now provides many editions for training and example purposes.
Is there anything comparable to this in the Oracle World? I have failed to find anything like this anywhere.
I do realize that there are databases installed with Oracle (SQL Server comes with builtin DBs as well) but nothing seems to compare to Adventure Works. It would be nice to learn Oracle and middle tier applications against some real data.
I would appreciate any direction on this as to where i can obtain sample databases for Oracle.
Thanks

orisis_is_mine wrote:
I am used to working with SQL Server 2005 and now working in SQL Server 2008.
I have used Oracle 10g and 11g in the past but would like to dive into PL/SQL
SQL Server has always provided a sample database called AdventureWorks and now provides many editions for training and example purposes.
Is there anything comparable to this in the Oracle World? I have failed to find anything like this anywhere.
I do realize that there are databases installed with Oracle (SQL Server comes with builtin DBs as well) but nothing seems to compare to Adventure Works. It would be nice to learn Oracle and middle tier applications against some real data.
I would appreciate any direction on this as to where i can obtain sample databases for Oracle.
ThanksOralce is not Sql Server and I believe, in Sql Server, the concept of a database within database is called a Schema of a database in Oracle. So Oralce does supply some sample schemas that one can install in his database and use this data for playing around.
Here is the doc link to give the info that how one can install these sample schemas,
http://download.oracle.com/docs/cd/E11882_01/server.112/e10831/toc.htm
HTH
Aman....

Similar Messages

  • Error in creation of sample database during installation of Oracle8

    I am trying to install Oracle8 for Intel Solaris8. Near the end of installation - running database configuration assitant, the creation of the sample database failed by an alert:
    ORA-03114: not connected to ORACLE
    I also tried to run database configuration assistant in custom mode separately, "ORACLE not available" message came up.
    I think ORACLE should be connected and running before creation of the sample DB, like installation of Oracle in Windows.
    Anyone has the same problem or can give me a help?
    The Oracle(8.1.7) CD comes with Solaris8 (07/01) package.
    Thanks.

    I would guess that your kernal parameters have not been set. Check you oracle install guide for the appropriate additions to /etc/system for semiphores and shared memory segments. If you have not made these changes, the database will not come up.
    ...jcd...

  • Beginners Guide Oracle Sample Database

    Hi!
    In the "Oracle Database 10g: A Beginer's Guide" in Chapter 2 a sample database is discussed with the tables customers, products, sales and costs. You need have it to try it the examples. How can I obtain it?
    I have Oracle10gRelease2(10_2_0_1_0) installed on Windows XP Pro SP2.
    Thanks,
    Hans

    Hi
    What is the link of:
    "Oracle Database 10g: A Beginer's Guide"?
    Maybe this is only a sample schema in a database, not a sample database.
    Create a new one and you will have this sample schema and tables.
    Ott Karesz
    http://www.trendo-kft.hu

  • What are the ODBC connect details for the HR sample database?

    I have installed Oracle Express on Ubuntu 8.10 and read the Getting Started tutorials. Everything worked fine.
    THE DSN
    I need to connect via ODBC, to start with to the HR sample database on my PC.
    The Getting Started tutorial says the userid and password are both hr, but what is the data source name (dsn) to be used with the SQLConnect?
    THE INIs
    The ini files below are the result of googling, not of any insight on my part.
    /etc/odbcinst.ini
    [OracleExpressdrv]
    Driver = /usr/lib/oracle/xe/app/oracle/product/10.2.0/server/lib/libsqora.so.10.1
    Description = Oracle 10g express driver
    /etc/odbc.ini
    [hrdsn]
    Driver = OracleExpressdrv
    Application Attributes = T
    Attributes = W
    BatchAutocommitMode = IfAllSuccessful
    CloseCursor = F
    DisableDPM = F
    DisableMTS = T
    DSN = TestDSN
    EXECSchemaOpt =
    EXECSyntax = T
    Failover = T
    FailoverDelay = 10
    FailoverRetryCount = 10
    FetchBufferSize = 64000
    ForceWCHAR = F
    Lobs = T
    Longs = T
    MetadataIdDefault = F
    QueryTimeout = T
    ResultSets = T
    # ServerName is TNS_alias_from_tnsnames.ora
    ServerName = OraDB
    SQLGetData extensions = F
    Translation DLL =
    Translation Option = 0
    UserID = ken
    THE ENVIRONMENT
    Before running my odbc test program I issued
    LD_LIBRARY_PATH=/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/lib;export LD_LIBRARY_PATH
    and checked via env command that the ldlibpath actually had been set correctly.
    After SQLConnect received the following error:
    Usage error: SQLConnect: dsn=hrdsn, user=hr, password=hr <<< output by my test program
    1: st=IM002, nerr=0, msg=
    [unixODBC][Driver Manager]Data source name not found, and no default driver specified
    The first part of the error message hints at there being something wrong with dsn=hrdsn. I don't understand the second part 'and no default driver specified'.
    I am totally stuck. Advice would be most appreciated.

    Oracle® Database Express Edition Installation Guide for Linux talks about Compiling the Oracle ODBC Driver Demos. It tells you to download and install the unixODBC DriverManager from unixODBC. On Ubuntu this is already preinstalled and/or available via the Synaptic Manager. It also instructs you to run a makefile demo_xe.mk to build an odbcdemo program. The makefile did not work for me (hundreds of compilation errors), but I looked at the odbcdemo.c code and could see that dsn=TESTDBDSN for user=hr and password=hr. In other words, by luck the demo program seems to be connecting to the HR sample database.
    I changed the /etc/odbc.ini file to:
    [TestDBDSN]
    Application Attributes = T
    Attributes = W
    BatchAutocommitMode = IfAllSuccessful
    CloseCursor = F
    DisableDPM = F
    DisableMTS = T
    Driver = OracleExpressdrv
    DSN = TestDBDSN
    and also in my test program which now produced the following error:
    Usage error: SQLConnect: dsn=TestDBDSN, user=hr, password=hr
    1: st=IM004, nerr=0, msg=
    [unixODBC][Driver Manager]Driver's SQLAllocHandle on SQL_HANDLE_HENV failed
    which shows that the unixODBC driver manager has loaded the driver and that the driver immediately encountered problems.
    The sql calls issued before the SQLConnect("TestDBDSN", "hr" , "hr") were OK, i.e. these:
    rc0 = SQLAllocHandle ( SQL_HANDLE_ENV , SQL_NULL_HANDLE , &henv ) ;
    rc = SQLSetEnvAttr ( henv, SQL_ATTR_ODBC_VERSION , *)SQL_OV_ODBC3 , 0 ) ;
    rc = SQLAllocHandle ( SQL_HANDLE_DBC , henv , &hdbc ) ;
    SQLSetConnectAttr ( hdbc , SQL_LOGIN_TIMEOUT , (void*)5 , 0 ) ;
    However, the error appears after SQLConnect and yet the rc0 was reported as OK.
    The error message 'Driver's SQLAllocHandle on SQL_HANDLE_HENV failed' is totally unhelpful to me as a user since I don't know the conditions that lead to failure. I really think this calls for some documentation. Such documentation should be complete, self-contained and correct and give ALL OPERATIONAL steps, i.e. I want to know exactly what I have to do. Ambiguous English often referring to undefined terms is not what Oracle beginners like myself want.
    I don't know if this is a bug. It is so fundamental that Oracle ODBC driver writers could/should not have got it wrong. The connect does not even start.
    I have googled for hours, but every lead has failed.
    I don't want to give up on this. What can I do?

  • Is there any well designed sample database availabe for download ?

    Hi
    Thank you for reading my post
    I get the Oracle Express 10g and now i am looking for a good database with some test data inside it
    to practice some tuning and sql commands.
    is there any (rather big ) sample database available for download ?
    Thanks

    Hello,
    XE ships with the Sample Application that includes the HR schema with some objects to work on. By default, the HR user account is locked so you need to unlock it first. It's usually a good place to start as many current and future documentation based on XE will include examples from this schema.
    Przemek

  • 10gR2 under Solaris 10: Error creating sample database

    I am attempting to install 10gR2 on a Sun Ultra 10 Sparc workstation running Solaris 10. I successfully configured the ASM drives and loaded the software, and am now attempting to install the actual database software.
    While the installer is running the Database Configuration Assistant, the second "recommended" configuration program, I get an error almost halfway through that says "ORA-19879: error reading backup piece". Looking through the logs kept by the Assistant, I find this entry:
    Grant succeeded.
    20061228 03:17:09
    1 row selected.
    old 30: dbms_backup_restore.restoreDataFileTo(data_file_id,'&data_file_name');
    new 30: dbms_backup_restore.restoreDataFileTo(data_file_id,'/u01/app/oracle/product/10.2.0/db_1/assistants/dbca/templates/example.dmp');
    old 33: dbms_backup_restore.restoreBackupPiece('&data_file_backup', done);
    new 33: dbms_backup_restore.restoreBackupPiece('change_on_install', done);
    Allocating device....
    Specifying datafiles...
    Specifing datafiles...
    Restoring ...
    declare
    ERROR at line 1:
    ORA-19624: operation failed, retry possible
    ORA-19870: error reading backup piece
    /u01/app/oracle/product/10.2.0/db_1/dbs/change_on_install
    LRM-00116: syntax error at 'tablespaces' following '='
    IMP-00022: failed to process parameters, type 'IMP HELP=Y' for help
    IMP-00000: Import terminated unsuccessfully
    ORA-19505: failed to identify file
    "/u01/app/oracle/product/10.2.0/db_1/dbs/change_on_install"
    ORA-27037: unable to obtain file status
    SVR4 Error: 2: No such file or directory
    Additional information: 3
    ORA-06512: at "SYS.DBMS_BACKUP_RESTORE", line 5146
    ORA-06512: at line 33
    I couldn't find anything wrong in "example.dmp", and I couldn't find "change_on_install" in the directory listed, even while the error window was still on the screen. Most of the errors in the log following this fragment have to do with tablespace EXAMPLE not being there.
    Someone else with a similar problem solved it by installing the database software without the sample databases. I'll give that a try tomorrow, but I'd still like to know where I'm even supposed to look to find the problem I had above.
    Thanks,
    Mike McCormick

    Okay, I've found at least one source for this problem. There is a script called mkplug.sql in the demo/schema directory that had a line that began "host imp .....". 'imp' is in the db_1/bin directory, which the PATH variable does not yet point to.
    So, my question now is whether I should change "host imp..." to "host $ORACLE_HOME/bin/imp..." in all the files it appears in (sted_mkplug.sql and sdoepsgv.sql, as well as mkplug.sql), or add $ORACLE_HOME/bin to the PATH variable manually.
    What I'm going to try is to deinstall the database, scrap the directories, then reload the software only. After that, I'll edit the files in the demo directory and use dbca to create the demo directories.
    Mike McCormick

  • How to connect to HR sample database using ODBC?

    This is for Oracle Express running on Ubuntu 8.10.
    The SQLConnect ODBC call requires datasourcename/dsn, userid and password as parameters.
    What are these for the HR sample database?

    Many thanks.
    I have only just downloaded Oracle Express and have never used Oracle before, so I do not understand the meaning of service name.
    The userid and password for HR are both hr, which just leaves the dsn.

  • Where can I get code for a sample database

    I am learning Oracle PL/SQL and I need a sample database so I can practice my skills. Please Help.

    You can refer PLSQL Devloper's guide at following location :
    http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/appdev.920/a96624/toc.htm
    It explains PLSQL concepts and gives example code to get started.
    Chandar

  • Problem in installing Siebel 8.0 sample database

    Hi,
    I am not getting Siebel 8.0 sample database installable (.jar file), can any one please help me out??I have downloaded all parts of Siebel Business Applications, Version 8.0, Base Applications for Windows, but did not find SBA_8.0.0.0_Base_Windows_Siebel_Sample_Database.jar. please provide correct Part Number for sample database .jar file.
    Thanks in advance.

    Hi
    Please stop multiposting you questions. Pick one forum and post it there not in several forums. That will not speedup the answer to your question, and just annoys other people in the forum.
    Have a look at the answer I have already given you here:
    Re: Problem with Siebel 8.0 sample database
    Axel

  • How to install oracle 'sample' database?

    hi
    i want to know how to install the oracle sample database.i am using oracle 9i installed in win XP pro.I have already installed an empty database named 'orcl.world' by following the steps given in 'oracle by example' link http://otn.oracle.com/obe/paa/index.html/
    But its empty and i wanted to install the sample database provided by oracle in order to start practising PL/SQL.
    thanks!

    I'm assuming you want to install the sample schemas since you already installed the database. The standard install includes these sample schemas, but if you're sure you don't have them, you can take a look at this link which will walk you through the steps http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96539/installa.htm#4371
    HTH -kk

  • Sample Database HR missing

    I am very new with apex and oracle, i just installed oracle database 10G R2 and Application Express 3.0.1.00.08 but following the 2 Days Plus Aplication Express Developer Guide, I am not able to find the Sample Database HR?
    Theres is any way to install de sample database? where i can find the scripts? how to run it?
    Regards..
    Pedro Mendoza

    ARe you able to view any table with the name
    OEHR

  • Help: essbase sample database no data

    Hi all,
    I am newbie for essbase. I have installed the essbase server/client components. But I found there are no any data in sample database. eg, ASosamp.Sample, Demo.basic. by Visualize&Explore with excel addin.
    Who could please tell me how to have real data for good experience. Did I make a mistaken in installing procedure?
    Also appreciated to where to download other good demonstration database,
    Thanks in advance.
    seamus

    The data for the database is in a file called Calcdata.txt It is in an export file format so you don't need a load rule to load it. In AAS right click on the database name, select load data, the find the file and click ok. it will load without errors. Than you will need to calculate the dtabase. Agailn right click on the database name and select calculate. Select default and click ok. In a second or two the db will be calculated

  • Create MS SQL Server 2014 instance for TSQL2012 sample database Training kit (70-461)

    Hi,
    I just bought the Training kit (70-461) Querying Microsoft SQL server 2012. I downloaded Microsoft SQL Server 2014. I have also downloaded the script for the sample database -
    TSQL2012.sql.
    Basically I want to set up the sample database and practice my SQL queries. How do I log into
    Microsoft SQL Server 2014? Basically I am doing this on my home computer. It is asking me for Server type, Server name, and Authentication. Do I have to set up a server instance to run and create the sample database? How?
    Thanks.
    Peter

    Do you see anything in the Server Name at all?
    So, in the first drop down you need to select Database Engine.
    In the second (for Server Name) if you see anything, then try selecting it.
    If there is nothing, try methods described in this article
    http://sqlserver-help.com/2011/06/19/help-whats-my-sql-server-name/
    to find the actual name.
    Then, try choosing Windows Authentication and try connecting. If this would not work, then you do need to try using sa and sa's password. If there is no way to find that sa password, then perhaps it's better to clearly uninstall and re-install. If you want,
    I'll move your thread into either 'Getting Started' or Data Access forum as it doesn't seem to be related with Transact SQL.
    For every expert, there is an equal and opposite expert. - Becker's Law
    My blog
    My TechNet articles

  • Sample Database for Crystal Reports 2013

    Please let me know where to find the Xtreme Mountain Bike sample database for Crystal Reports 2013. I have search everywhere I can think of without success. The sample database was not included in the trial-version download. Thanks very much, SRS

    And a few more sample reports are here:
    http://scn.sap.com/docs/DOC-50471
    - Ludek
    Senior Support Engineer AGS Product Support, Global Support Center Canada
    Follow us on Twitter

  • Siebel Sample Database Access question

    I am from the Oracle EBS world and am a newbie to Siebel. I want to try out Siebel.
    Just like Siebel sample database EBS has a sample instance called VISION. There are few Oracle Partners that give free online access to the VISION instance.
    My question is are there any websites that has free Siebel Sample database access.
    I understand that installing Siebel sample database on a pc is relatively straight forward but I'll take that route if there are no other option.
    TIA
    Harsha

    Hi,
    That is the easiest way (installing Siebel Sample DB) i guess it's the only way.
    Goud

Maybe you are looking for

  • Can't add any new files to itunes

    Hi In the past I've managed to add new music files via "file" then "add file to library" from the top toolbar - the file is then added to your libra. For some reason this isn't working now! Get to select a file, but when press oK nothing is added. Wo

  • Integration builder login problem

    hi all, i am not able to login into integation builder,while i am trying to open the integration builder,it is giving the error, i.e ERROR com.sap.aii.utilxi.swing.toolkit.ExceptionDialog: Throwable Thrown: MESSAGE ID: com.sap.aii.utilxi.misc.api.Rec

  • ODAC112030  OracleMembershipProvider/RoleProvider missing in Provider Tab

    OracleMembershipProvider, OracleRoleProvider missing in ASP.NET Configuration Provider page Installed ODTwithODAC112030, but 'OracleMembershipProvider' and 'OracleRoleProvider' are NOT visible in the 'Website > ASP.NET Configuration' provider page. R

  • How do i put icloud in my dock

    how do i put icloud or a mail icon in my dock. I have an G4 imac.

  • There are no llb files in the hp8165a zip file . What can I do?

    Missing files in the zip file. Cannot run the downloaded file for the HP 8165 A programmable Signal Source Attachments: hp8165.zip ‏15 KB