Error installing OLAPTRAIN sample schema

When I tried to install the example, I get this error message:
Begin installation
... OLAPTRAIN user exists. Attempting to drop the user.
... creating OLAPTRAIN user
... creating OLAPTRAIN_INSTALL directory
... importing dump file into OLAPTRAIN schema.
Import: Release 11.1.0.6.0 - Production on Thursday, 22 January, 2009 0:55:04
Copyright (c) 2003, 2007, Oracle. All rights reserved.
Connected to: Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
ORA-39002: invalid operation
ORA-31694: master table "OLAPTRAIN"."SYS_IMPORT_FULL_01" failed to load/unload
ORA-02354: error in exporting/importing data
ORA-02373: Error parsing insert statement for table "OLAPTRAIN"."SYS_IMPORT_FULL_01".
ORA-00904: "ORIGINAL_OBJECT_NAME": invalid identifier
... dropping OLAPTRAIN_INSTALL directory
Installation complete.

installing the olaptrain schema
proceed through following steps
1.unzip the olaptrain schema
2.change tha name olaptrain_home (unzipped
directory name to *[install_home]*.
3.copy the *[install_home]* folder to the
oracle database folder.
for example suppose your oracle 11gr2 database
location is
*" D:\app\karuna\product\11.2.0\dbhome_1\database"*
then copy your *[install_home]* folder into the
above directory folder.so location of your
[install_home] should also be
"D:\app\karuna\product\11.2.0\dbhome_1\database\[install_home]"
4.now open cmd
go to the directory where u have copied
the[install_home]
ex:- cd D:\app\karuna\product\11.2.0\dbhome_1\database\[install_home]\olaptrain_install
that was in my case
5.now login to sqlplus
ex:-type sqlplus in cmd
login as dba
ex:- system/password as sysdba
then it will ask u for the directory
so directory name should be the same where
u have kept the [olaptrain_schema]
in my case it was
Directory: *D:\app\karuna\product\11.2.0\dbhome_1\database\[install_home]\olaptrain_install*
the directory address ws given by me...
u can see here its location is same as the
location where i have copied olaptrain
schema.
6.then it wl prompt for password
password can be anything u want.
and voila installation
started....................
now building olaptrain cubes
7. @create_olaptrain_cubes
install directory should be same as sbove
8.password same as above
installation started...
Edited by: karuna nidhan tiwary on Aug 10, 2012 5:51 AM

Similar Messages

  • Error installing olaptrain sample schema for OLAP Cubes

    I want to install olaptrain schema for OLAP cubes. It has been the error when I apply the procedures. My password is also correct. This error is attachment link.
    http://1ercanyagmur9.blogspot.com.tr/2014/01/error.html

    The error link that you pasted in this post is no longer available.

  • Installing the sample schemas

    Hi I am new to sqlOracle
    I was trying to follow some Oracle tutorial,but i needed to install the sample schemas (OE-order entry) first
    http://www.oracle.com/technology/obe/obe1013jdev/common/OBEConnection.htm
    1. First i download the sample_schema_scripts.zip and extracted into the folder
    c:\schema that i created
    2. I start database from my database OracleEX10g
    3. go to the C:\schema that have the sql script (oe8_main.sql)
    4.use sqlplus
    5. login as system and put the password
    6. run the scripts oe8_main.sql with no problems
    7. it asked me for " specify password for oe8 as parameter 1:
    and i need to enter value for 1: which is i dont know
    8. i need to fil this value til parameter 6
    9. so i typed the value &1 for parameter 1 and &2 for parameter 2...til parameter 6
    10. it showned error:
    ERROR at line 1:
    ora-00988 : missing or invalid passwords(s)
    and user or role 'OE8" does not exist and
    ask me to enter value for database_name: which i dont know
    11. anyone can help to solve the problem and how can i know what are the passwords for 6 parameters
    12. Do i need to create my new user because i used system as a user
    13. this is the content of oe8_main.sql file attached:
    SET ECHO OFF
    PROMPT
    PROMPT specify password for oe8 as parameter 1:
    DEFINE pass = &1
    PROMPT
    PROMPT specify default tablespeace for oe8 as parameter 2:
    DEFINE tbs = &2
    PROMPT
    PROMPT specify temporary tablespace for oe8 as parameter 3:
    DEFINE ttbs = &3
    PROMPT
    PROMPT specify password for HR as parameter 4:
    DEFINE passhr = &4
    PROMPT
    PROMPT specify password for SYS as parameter 5:
    DEFINE pass_sys = &5
    PROMPT
    PROMPT specify path for log files as parameter 6:
    DEFINE log_path = &6
    PROMPT
    -- The first dot in the spool command below is
    -- the SQL*Plus concatenation character
    DEFINE spool_file = &log_path.oe8_main.log
    SPOOL &spool_file
    -- Dropping the user with all its objects
    DROP USER oe8 CASCADE;
    REM =======================================================
    REM create user
    REM
    REM The user is assigned tablespaces and quota in separate
    REM ALTER USER statements so that the CREATE USER statement
    REM will succeed even if the demo and temp tablespaces do
    REM not exist.
    REM =======================================================
    CREATE USER oe8 IDENTIFIED BY &pass;
    ALTER USER oe8 DEFAULT TABLESPACE &tbs QUOTA UNLIMITED ON &tbs;
    ALTER USER oe8 TEMPORARY TABLESPACE &ttbs;
    GRANT CONNECT TO oe8;
    GRANT RESOURCE TO oe8;
    GRANT CREATE MATERIALIZED VIEW TO oe8;
    GRANT QUERY REWRITE TO oe8;
    REM =======================================================
    REM grants from sys schema
    REM =======================================================
    rem KM: 01Aug02 - remove "AS SYSDBA" clause - NOT needed FOR GRANT
    CONNECT sys/&pass_sys&&database_name
    GRANT execute ON sys.dbms_stats TO oe8;
    REM =======================================================
    REM grants from hr8 schema
    REM =======================================================
    CONNECT hr8/&passhr&&database_name;
    GRANT REFERENCES, SELECT ON employees TO oe8;
    GRANT REFERENCES, SELECT ON countries TO oe8;
    GRANT REFERENCES, SELECT ON locations TO oe8;
    GRANT SELECT ON jobs TO oe8;
    GRANT SELECT ON job_history TO oe8;
    GRANT SELECT ON departments TO oe8;
    REM =======================================================
    REM create oe8 schema (order entry)
    REM =======================================================
    CONNECT oe8/&pass&&database_name
    ALTER SESSION SET NLS_LANGUAGE=American;
    ALTER SESSION SET NLS_TERRITORY=America;
    @@oe8_cre
    @@oe8_p_pi
    @@oe8_p_pd
    @@oe8_p_whs
    @@oe8_p_cus
    @@oe8_p_ord
    @@oe8_p_itm
    @@oe8_p_inv
    @@oe8_views
    @@oe8_comnt
    @@oe8_idx
    @@oe8_analz
    spool off

    Hi,
    HR sample schema already comes with Oracle XE, so you don't need to re-install it. Anyways ...
    C:\>sqlplus / as sysdba
    SQL*Plus: Release 10.2.0.1.0 - Production on Sun Jun 22 12:58:20 2008
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Express Edition Release 10.2.0.1.0 - Production
    SYS@XE> @C:\oraclexe\app\oracle\product\10.2.0\server\demo\schema\human_resources\hr_main.sql;
    specify password for HR as parameter 1:
    Enter value for 1: HR -- put here some password
    specify default tablespeace for HR as parameter 2:
    Enter value for 2: USERS
    specify temporary tablespace for HR as parameter 3:
    Enter value for 3: TEMP
    specify password for SYS as parameter 4:
    Enter value for 4: MANAGER -- password that you defined at Oracle XE installation
    specify log path as parameter 5:
    Enter value for 5: C:\
    User dropped.
    old   1: CREATE USER hr IDENTIFIED BY &pass
    new   1: CREATE USER hr IDENTIFIED BY hr
    User created.
    old   1: ALTER USER hr DEFAULT TABLESPACE &tbs
    new   1: ALTER USER hr DEFAULT TABLESPACE users
    old   2:               QUOTA UNLIMITED ON &tbs
    new   2:               QUOTA UNLIMITED ON users
    User altered.
    old   1: ALTER USER hr TEMPORARY TABLESPACE &ttbs
    new   1: ALTER USER hr TEMPORARY TABLESPACE temp
    User altered.
    Grant succeeded.
    Grant succeeded.
    Connected.
    Grant succeeded.
    Connected.
    Session altered.
    Session altered.
    ******  Creating REGIONS table ....
    Table created.
    Index created.
    Table altered.
    ******  Creating COUNTRIES table ....
    Table created.
    Table altered.
    ******  Creating LOCATIONS table ....
    Table created.
    Index created.
    Table altered.
    Sequence created.
    ******  Creating DEPARTMENTS table ....
    Table created.
    Index created.
    Table altered.
    Sequence created.
    ******  Creating JOBS table ....
    Table created.
    Index created.
    Table altered.
    ******  Creating EMPLOYEES table ....
    Table created.
    Index created.
    Table altered.
    Table altered.
    Sequence created.
    ******  Creating JOB_HISTORY table ....
    Table created.
    Index created.
    Table altered.
    ******  Creating EMP_DETAILS_VIEW view ...
    View created.
    Commit complete.
    Session altered.
    ******  Populating REGIONS table ....
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    ******  Populating COUNTIRES table ....
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    ******  Populating LOCATIONS table ....
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    ******  Populating DEPARTMENTS table ....
    Table altered.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    ******  Populating JOBS table ....
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    ******  Populating EMPLOYEES table ....
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    ******  Populating JOB_HISTORY table ....
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    1 row created.
    Table altered.
    Commit complete.
    Index created.
    Index created.
    Index created.
    Index created.
    Index created.
    Index created.
    Index created.
    Index created.
    Index created.
    Index created.
    Index created.
    Commit complete.
    Procedure created.
    Trigger created.
    Trigger altered.
    Procedure created.
    Trigger created.
    Commit complete.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Comment created.
    Commit complete.
    PL/SQL procedure successfully completed.Cheers
    Legatti

  • Error installing OEHR sample objects for APEX 4.2

    Hello,
    I'm getting a weird error after importing the OEHR sample objects application from the script found at http://www.oracle.com/technetwork/testcontent/oehr-sample-objects-131098.zip
    The import process works, no errors, the application is created and so are the supporting objects.
    I then try to edit the application (using Application Builder). I click on the only page ("About") and it doesn't render. The message reads :
    Error during rendering of region "Page Rendering".
    ORA-01403: no data found
    If I try to run the application, I also get the same error (no data found). Which is bizarre, as this application is supposed to just show an "About" page.
    I don't really mind that the application doesn't work, since the supporting objects are created correctly, but I am worried that there could be a configuration problem that causes this issue...
    Has anyone else encountered this problem ?
    I'm running :
    Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    Application Express 4.2.2.00.11
    Other sample applications seem to run just fine. Very strange...
    Thanks very much !
    -Laura

    Hi Laura,
    As the name suggests, 'OEHR Sample Objects', is meant for importing of sample objects that are referenced in a number of OBEs and tutorials on APEX.  Those objects can then be used for the creation of the various applications and component examples in the tutorials, etc.  The application itself is not a functioning application, so the errors you see would be expected.  As stated in Chapter 3 of our 2 Day+ Application Developer's Guide, in the note at the end of section Importing the OEHR Supporting Objects:
    The OEHR Sample Objects application that you just installed functions solely as a way to install the sample objects needed to complete the exercises in this document. You will not directly use this application.
    If you wish to install sample applications, then I would recommend that you navigate to Application Builder > Packaged Applications, for the list of available packaged business productivity applications, as well as a number of sample code applications.  Please note that none of these applications are based upon the database objects that would have been created when you installed 'OEHR Sample Objects'.  Apologies for any confusion, but hopefully this helps to clarify things.
    Regards,
    Hilary

  • Installing sample schema

    Hi, Everyone,
    I would like to know how to install a sample schema in oracle 11g database.
    I have already installed oracle 11.1.0.6 on my server without the sample schema. Now i want to install the sample schemas in my database. Can anyone provide me with the steps on how to install it.
    i am following this document
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28328/installation.htm#I6806
    but the files it is mentioning .sql files for example in the hr folder i dont have this file...
    'hr_main.sql'
    i have only 'hr_code.sql'
    so i feel that something is missing somewhere.. so could you people help me in this?
    Thanks & Regards

    Can't find oe_main.sql and HR_main.sql
    HTH...

  • Install sample schemas

    Hi,
    I installed my oracle database successfully but dint install sample schemas.Now i want to install all sample schemas but couldnt find them under $Oracle_home/demo/schema.No **_main.sql is available there.Please provide me the sample scripts as am not in a condition to download companion CD                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    Pl see the download instructions here - http://docs.oracle.com/cd/E11882_01/install.112/e24501/toc.htm#BABBIBJF
    Then follow the install instructions here - http://docs.oracle.com/cd/E11882_01/server.112/e10831/installation.htm#I4367
    HTH
    Srini

  • Oracle provided sample schema ??

    I am new to Oralce
    I have just install Oracel 9i on my desktop, but having problems install the sample schema (HR, OR......)
    AS I have to manuly install the samle scheme, I followed the instuction given on the oracle website.
    I connected Using SYSTEM as SYSDBA, and execute the provided script and given the parameter as below :
    @?\DEMO\SCHEMA\HUMAN_RESOURCES\HR_MAIN.SQL
    specify password for HR as parameter 1:
    Enter value for 1: hr
    specify default tablespeace for HR as parameter 2:
    Enter value for 2: myspace ( I dont know what should be here , it is where things went worng i think. I got a error here ORA-00959: tablespace 'MYSPACE' does not exist)
    specify temporary tablespace for HR as parameter 3:
    Enter value for 3: temp
    specify password for SYS as parameter 4:
    Enter value for 4: sys
    specify log path as parameter 5:
    Enter value for 5: d:/Oracle_log
    After the input, I got mainly the error message :
    ****** Creating REGIONS table ....
    CREATE TABLE regions
    ERROR at line 1:
    ORA-01950: no privileges on tablespace 'SYSTEM'
    I dont understand tablespace in oracle. I had a look in the HR script. It create user HR and then connect as HR then start to creat table. i dont understand why the tablespace is still 'SYSTEM'
    Thanks for your help

    This looks like the doc you need:
    http://otn.oracle.com/tech/xml/xdk_sample/pdf/xdksample_093001.pdf
    Just do a search for the error text, it appears to be a sample that produces a deliberate error.
    Cheers
    Kevin

  • JDeveloper 11g Sample Schema FOD installation failure

    Do not have any previous experience about JDeveloper. Downloaded 11g version. Try to follow this link:http://www.oracle.com/technology/obe/obe11jdev/11/common/connection11g.htm to install a sample schema FOD for a tutorial. However at the following step:
    5. In the Application Navigator, right-click the build.xml file and choose Run Ant Target-->buildAll.
    I got:
    BUILD FAILED
    C:\FOD\Infrastructure\Ant\build.xml:52: The following error occurred while executing this line:
    C:\FOD\Infrastructure\DBSchema\build.xml:91: The following error occurred while executing this line:
    C:\FOD\Infrastructure\DBSchema\build.xml:56: The following error occurred while executing this line:
    C:\FOD\Infrastructure\DBSchema\build.xml:28: C:\FOD\Infrastructure\Ant\wlserver_10.3\server\lib not found.
    Appreciate someone can help me out.
    - Denis

    Hi, Arun,
    Thanks for your reply. I double-checked, looks there is no settign WLS home in the build.xml. My current setting is as follows, does it look right+
    # Base Directory for library lookup
    jdeveloper.home=C:\Oracle\Middleware\jdeveloper
    src.home=..//..
    # JDBC info used to create Schema
    jdbc.driver=oracle.jdbc.OracleDriver
    jdbc.urlBase=jdbc:oracle:thin:@113.130.218.168
    jdbc.port=1521
    jdbc.sid=dbwrkev1
    # Information about the default setup for the demo user.
    db.adminUser=zxxxx4
    db.demoUser=FOD
    db.demoUser.password=fusion
    db.demoUser.tablespace=USERS
    db.demoUser.tempTablespace=TEMP
    - Denis

  • What are the sample schemas(like scott,hr) in oracle 12c?

    Hi,
    I have just downloaded and installed  the oracle 12c on my desktop(Hurray!), but i don't see any of the sample schemas like scott and hr to play with. Do we have anything like those schemas in 12c?
    Thanks,
    sg

    I have just downloaded and installed  the oracle 12c on my desktop(Hurray!), but i don't see any of the sample schemas like scott and hr to play with. Do we have anything like those schemas in 12c?
    Yes - but they would be in a PDB if you installed the sample schemas; you won't find them in the CDB.
    If, like many people new to 12c, you did a default install for a database named ORCL and then connect to ORCL you are connecting to the CDB; that is, the root container. You won't find any sample schema there.
    If you installed the sample schemas then the install process would have created one PDB name PDBORCL (by default) and that PDB would contain the sample schemas.
    Then the next thing users typically do is connect as sysdba and do a STARTUP and then find they can't connect to PDBORCL. Surprise! The PDBs are NOT opened by default; you need to open them manually when you startup the DB or create an AFTER STARTUP trigger that opens the ones you want.
    Review chapters 17 and 18 of the Database Concepts doc
    http://docs.oracle.com/cd/E16655_01/server.121/e17633/cdbovrvw.htm

  • Sample schema manual installation

    I installed the oracle 11g release2 and unchecked to install the sample schema when installation process, after installation completed, I want to install the sample schema manually, as document said all scripts will be in $ORACLE_HOME/demo/schema directory but I cannot find all installation scripts, Anyone could help why? and where I can get the scripts to create the sample schema (HR,OE,SH etc).
    Thank you very much!

    user12063985 wrote:
    I have read the document but not find those scripts, I am using windows xp sp3 32bit.
    Thanks a lot!In Chapter 2 of the Install Guide linked above, under the section titled "Manually Installing Sample Schemas" there is a link to http://download.oracle.com/docs/cd/E11882_01/install.112/e17861/toc.htm and if you scroll down to "Download Oracle Database Examples" section, you will find the instructions :-)
    HTH
    Srini

  • 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

  • Unable to create sample schema using response file

    Installed oracle 11g r1 on Linux server using response file (silent mode). I wanted to install the sample schema for testing so I updated the sample_schemas section in $ORACLE_HOME/assistants/dbca/templates/dbcreate.dbc
    <option name="SAMPLE_SCHEMA" value="true">
    <tablespace id="USERS"/>
    </option>
    After the installation I noticed sample schemas HR, SH were not created.
    -     Do we have to manually create the sample schemas by running the individual scripts?
    -     Also could not find the master script mksample.sql in the $ORACLE_HOME/demo/schema directory.
    Please let me know if I am missing any parameter in dbcreate.dbc.
    Thank you,

    user504183 wrote:
    Installed oracle 11g r1 on Linux server using response file (silent mode). I wanted to install the sample schema for testing so I updated the sample_schemas section in $ORACLE_HOME/assistants/dbca/templates/dbcreate.dbc
    <option name="SAMPLE_SCHEMA" value="true">
    <tablespace id="USERS"/>
    </option>
    After the installation I noticed sample schemas HR, SH were not created.
    -     Do we have to manually create the sample schemas by running the individual scripts?
    -     Also could not find the master script mksample.sql in the $ORACLE_HOME/demo/schema directory.
    Please let me know if I am missing any parameter in dbcreate.dbc.
    Thank you,You can't install manually the sample schemas since they come in a "pluggable tablespace" Examples which is automatically appended to your database by DBCA. If you would miss choosing the option for the same, you would need to get them created through the Examples Media CD and follow the instructions given here.
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28328/installation.htm#I4367
    HTH
    Aman....

  • Where to download scripts for HR sample schema

    Hi,
    i installed Oracle11g on linux without sample schemas.
    now i want to manually install the sample schemas.
    and when i checked the folders under "../human_resources"
    i am not able to view the scripts to install HR schema.
    i tried a lot of google search but i am not able to find and download the scripts needed to create HR objects.
    Can someone guide me where i can find scripts that i can download and install all the sample schema objects
    Thanks,
    Philip.

    It's part of the Companion install

  • Sample schema oe_main.sql

    Hi...Ive installed 10g db, Personal Edition and attempting to add the sample schemas HR/OE. I can find the hr_main.sql in the $ORACLE_HOME/.../demo folder. I now need the oe_main.sql to finish install of sample schemas for my purposes...
    Does anyone have a copy or know where I can get the oe_main.sql for 10g and JDeveloper sample schemas?
    Hopefully,
    TC

    Hi Lisa,
    I cant be sure that they are the same as I dont have them to compare. I do know that when running the 9i version of hr_main.sql, we are prompted with multiple parameter entries, but when using 10g version we receive no parameter entries, just successful completion. In some of the called proceudres, there have been updates e.g hr_code.sql. This is from comparison of the hr code...have no idea with the oe code. Ive since tried reinstallations of 10g and now all the expected code cant be found...
    There must be a source other than through the installation, where we can copy the same code from...similar to the 9i documentation which contained the full code in text...but then thats not Jdev but RDBMS docs...
    Thanks,
    Tony

  • Hello Members Please Help Error Installing Sample Schemas (HR)

    Hi members, and thank you for your help.
    After much mulling I have installed Oracle 12c (64b) on my Windows 7 64b SP.
    Apparently everything is working fine, I can access both from the web (EM Express) an SQL Plus as SYS for example.
    he probelma is:
    I downloaded and unzipped winx64_12c_examples and have installed correctly.
    I have verified that you have added the files in the respective folders.
    For example, in C: \ Oracle12c \ product \ 12.1.0 \ dbhome_1 \ demo \ schema \ human_resources I have the 10 files.
    12/10/2002 19:27 1,173 hr_analz.sql
    29/08/2002 14:29 2,825 hr_code.sql
    29/08/2002 14:29 7,387 hr_comnt.sql
    29/08/2002 14:29 9,718 hr_cre.sql
    29/08/2002 14:29 16,439 hr_dn_c.sql
    Hr_dn_d.sql 934 29/08/2002 14:29
    29/08/2002 14:29 1,196 hr_drop.sql
    29/08/2002 14:29 1,410 hr_idx.sql
    27/05/2011 11:25 3,368 hr_main.sql
    15/08/2008 18:12 46,647 hr_popul.sql
                   10 files 91 097 bytes
    Now I come to install the samples as indicated in the link:
    http://docs.oracle.com/cd/E16655_01/server.121/e15979/installation.htm
    The inputs...
    SQL * Plus: Release 12.1.0.1.0 Production on Tue Sep 6 1:21:36 2013
    Copyright (c) 1982, 2013, Oracle. All rights reserved.
    Enter the user name: sys as sysdba
    Enter the password ± to:
    Connected to:
    12c Oracle Database Enterprise Edition Release 12.1.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Advanced Analytics and Real Application Testing opt
    ions
    SQL> @? / Demo / schema / human_resources / hr_main.sql
    specify password for HR as parameter 1:
    Enter a value for 1: passw
    specify default tablespeace for HR as parameter 2:
    Enter a value for 2: users
    specify temporary tablespace for HR as parameter 3:
    Enter value for 3: temp
    specify password for SYS as parameter 4:
    Enter value for 4: passw
    specify log path as parameter 5:
    Enter a value for 5: C: \ Oracle12c \ product \ 12.1.0 \ dbhome_1 \ demo \ schema \ log\
    The output is full of errors and seems not to have done anything ... ?
    However, if I have created the LOG in the right direction.
    Below I put the full LOG output.
    ===============================================================================
    C:\Oracle12c\product\12.1.0\dbhome_1\demo\schema\log\hr_main.log
    ===============================================================================
    DROP USER hr CASCADE
    ERROR at line 1:
    ORA- 01918 : user ' HR ' does not exist
    CREATE USER hr IDENTIFIED BY passw
    ERROR at line 1:
    ORA- 65096 : user or role name shared Invalid
    ALTER USER hr DEFAULT TABLESPACE users
    ERROR at line 1:
    ORA- 01918 : user ' HR ' does not exist
    ALTER USER hr TEMPORARY TABLESPACE temp
    ERROR at line 1:
    ORA- 01918 : user ' HR ' does not exist
    GRANT CREATE SESSION , CREATE VIEW, ALTER SESSION , CREATE SEQUENCE TO hr
    ERROR at line 1:
    ORA- 01917 : user or role ' HR ' does not exist
    GRANT CREATE SYNONYM , CREATE DATABASE LINK , RESOURCE, UNLIMITED TABLESPACE TO hr
    ERROR at line 1:
    ORA- 01917 : user or role ' HR ' does not exist
    Online .
    GRANT execute ON TO hr sys.dbms_stats
    ERROR at line 1:
    ORA- 01917 : user or role ' HR ' does not exist
    ERROR :
    ORA- 01017 : invalid username / password , logon denied
    Warning :no longer connected to ORACLE !
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** REGIONS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating table COUNTRIES ****** ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** LOCATIONS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** DEPARTMENTS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** JOBS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** EMPLOYEES table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** JOB_HISTORY table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** EMP_DETAILS_VIEW view ...
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** REGIONS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** countires table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** LOCATIONS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** DEPARTMENTS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    JOBS ****** Populating table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** EMPLOYEES table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    JOB_HISTORY ****** Populating table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0641 : " EXECUTE " requires connection to the server
    ------------------------------------------------------------------------------------------------------------------------------------------------------------------ END
    Thats is all, I think ....
    So here I come, continued searching google and forums but can not find a solution to this problem.
    Please appreciate any help with this, I need the sample database running.
    Thank you very much in advance and good luck.

    NEW ... LAST CHANGES !!
    I changed the PDB, which appeared as mounted pdborcl been open with the command:
    alter pluggable database pdborcl open;
    SQL> connect system/oracle@localhost:1521/pdborcl as sysdba
    Conectado.
    SQL> SELECT NAME, OPEN_MODE, RESTRICTED, OPEN_TIME FROM V$PDBS;
    NAME                           OPEN_MODE  RES
    OPEN_TIME
    PDBORCL                        READ WRITE NO
    06/09/13 20:54:33,875
    And now I repeat the process ...
    SQL> @? / Demo / schema / human_resources / hr_main.sql
    specify password for HR as parameter 1:
    Enter a value for 1: passw
    specify default tablespeace for HR as parameter 2:
    Enter a value for 2: users
    specify temporary tablespace for HR as parameter 3:
    Enter value for 3: temp
    specify password for SYS as parameter 4:
    Enter value for 4: passw
    specify log path as parameter 5:
    Enter a value for 5: C: \ Oracle12c \ product \ 12.1.0 \ dbhome_1 \ demo \ schema \ log\
    And The output  of the log has been changed !!!!
    ===============================================================================
    C:\Oracle12c\product\12.1.0\dbhome_1\demo\schema\log\hr_main.log
    ===============================================================================
    User deletion.
    User created .
    User changed.
    User changed.
    Grant finished properly.
    Grant finished properly.
    Online .
    GRANT execute ON TO hr sys.dbms_stats
    ERROR at line 1:
    ORA- 01917 : user or role ' HR ' does not exist
    ERROR :
    ORA- 01017 : invalid username / password , logon denied
    Warning :no longer connected to ORACLE !
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** REGIONS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating table COUNTRIES ****** ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** LOCATIONS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** DEPARTMENTS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** JOBS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** EMPLOYEES table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** JOB_HISTORY table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Creating ****** EMP_DETAILS_VIEW view ...
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** REGIONS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** countires table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** LOCATIONS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** DEPARTMENTS table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    JOBS ****** Populating table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    Populating ****** EMPLOYEES table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    JOB_HISTORY ****** Populating table ....
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0640 : Not connected
    SP2 -0641 : " EXECUTE " requires connection to the server
    we move forward
    Comments are welcome
    Thanks again !

Maybe you are looking for

  • Youtube Videos flicker and go green?

    Hello, Was wondering if anybody could help me, I've got a brand new macbook air and when i try and watch youtube videos the screen flickers and most of the time turns green and jumps or cuts straight to the end of the video. I have tried going on set

  • Default Header text in Purchase Order

    Dear All, I want to have a default PO header text.I.e whenever I create a PO the header text say "This PO is for XYX" should come as default in Header Text. How this can be achived.Through Config OR using some Function module.. what are the config.st

  • Database in RAC or not?

    Hi all, Can anyone tell me, how to find whether my DB is RAC or not? Its bit urgent. Thanks in advance!!! Regards, Mithra.

  • Changing the color of text while mouse listener.

    Hi all. working on an assignment for school and I need a little hint. I am creating an applet to basically input names in txt blocks, and then you hit a button that will move the names to a text area. Well the instructor asked us to use a mouse liste

  • Odi_11.1.3 releasenotes

    hii Are release notes available for odi 11.1.3. if yes,where can i get the document?