OLEDB 8i against Oracle 9i Database

Is it recommended to use Oracle Provider for OLE DB 8i driver against Oracle 9i Database server?
Does anyone have an official Oracle link whether this is supported or not.
Thanks
Dipak

Assuming you have an 8i client, this is a supported configuration. It new 9i features require some additional client coding, you may not be able to access them from the 8i client. I doubt you'd hit any of these issues since you're using OLE DB, though.
Unfortunately, I'm not aware of an official Oracle link that explains the policy. There is probably some note on Metalink that explains it.
Justin
Distributed Database Consulting, Inc.
www.ddbcinc.com/askDDBC

Similar Messages

  • Can i use oracle 7.3 drivers against oracle 8 database.

    When i'm executing a stored procedure with 8i driver i'm having a problem saying "Cannot Save or Rollback in distributed transaction". But when i use oracle 7.3 drivers i'm not having any problem.My question is , Can I use oracle 7.3 dirvers with oracle 8 database.
    null

    I tried disabling MTS. That doesnt look to work. Somehow 8i drivers are working in a distributed transaction mode by default. I resolved configuring 8i drivers as not to use distributed mode and works fine for me.
    For other who had this same kind of errors Solution is :
    Disable distribution transaction off if you are managing manual transactions from your scripts. Example: connectstring= DNS=...;"DistribTx=0.
    Justin,Thanks for your concerns and reply.

  • Hub installation against Oracle 9206 database

    We are trying to install Hyperion Hub 7.2.1 against an Oracle database. After installation we log on to console using admin/password to configure database and it creates tables and indexes in the database and console show successful database setup. After that once we restart application service and try to login to console with default username/password (admin/password) it shows "Not able to authenticate user". Can't think of anything missing. Any clues.. Your help will be highly appreciated.Thanks,

    Hi,
    you would at least need a 9.2.0.3 version, but I guess 9.2.0.4+ is recommended.
    http://download-uk.oracle.com/docs/cd/B19306_01/install.102/b16375/pre_require.htm#sthref27
    You should be fine with 9.2.0.6.
    Regards,
    ~Dietmar.

  • Oracle Forms 6i client/server against an Oracle 10gR2 database

    Hello
    We have the following situation:
    Oracle Forms6i/Reports6i client server application against an Oracle 8i cost-based database. we want to migrate this application
    step 1:
    Migrate the database to 10gr2, but do not touch the client application
    Go live
    step 2:
    Migrate the development environment to 6i webforms.
    Production environment stays client server.
    With this construction we can still create new patches/functionality.
    step 3:
    Migrate to Forms10gR2 (and reports)
    I know Forms 6i is not supported anymore.
    My question is on step 1.
    When I read NOTE: 338513.1 entitled "Is Forms/Reports 6i Certified To Work Against Oracle Server 10g Rel 1, Rel 2 or 11g?" carefully
    it says that Forms 6i is not certified against 10gR2.
    On OTN I read several posts that this works ok (assuming you do not use the wrong character set).
    I also read on OTN that patch 18 (which is only supported for EBS customers) is certified against 10gR2.
    The questions:
    - Is Oracle Forms patch 18 certified against an Oracle 10gR2 database? (or only for EBS)
    - Is there anybody out there that can confirm that Oracle Forms 6i C/S works against Oracle 10gR2
    Regards Erik

    Thank you.
    Now I found it.
    But how do I read that page.
    It says:
    Client Certifications
    OS      Product      Server Status
    XP      6.0.8.27.0 Patch 18      N/A      Desupported
    Application Tier Certifications
    OS      Product      Server      Status      
    XP      6.0.8.27.0 Patch 18      9.2      Desupported
    XP      6.0.8.27.0 Patch 18      10g      Desupported
    I read this as follows:
    Patch 18 was certified agains a 10g database in a webforms environment.
    No client server mentioned and Server 10g , so no 10gR2!
    I'm I right?
    Regards Erik

  • Limitations of Oracle 10G XE as against Oracle 10G Standard Edition

    Can you please give the information regarding....
    1. Capabilities of Oracle 10G XE (Express Edition)
    2. Limitations of Oracle 10G XE as against Oracle 10G Standard Edition

    Have a look at the License Information:
    http://download-uk.oracle.com/docs/cd/B25329_01/doc/license.102/b25456/toc.htm#BABJBGGA
    There's also a feature matrix in pdf-format:
    http://www.oracle.com/technology/products/database/oracle10g/pdf/twp_general_10gdb_product_family.pdf
    C.
    Message was edited by:
    cd

  • Embedded SQL against Oracle Question

    Software: Forte 3.0.J.
    Server Platform: HPUX 10.2
    Database: Oracle
    Problem Description: During the course of development, I ran into a
    problem using multiple columns in an sql UPDATE/SET statement. I was trying
    to update a.COLUMN_1 and a.COLUMN_2, which constitute part of the primary
    key of associative TABLE_A (a). In order for me to make the update, I
    needed to use the existing value of a.COLUMN_1 to lookup the new b.COLUMN_1
    in TABLE_B (b). Where a.COLUMN_1 = b.RELATED_COLUMN_1, I am able to find
    each b.COLUMN_2 that correspond to each a.COLUMN_2.
    I was able to resolve the issue by separating the two columns so
    that each had it's own select statement. Theoretically, it appears that
    this shouldn't work, because the SET statement for a.COLUMN_1 would cause
    the a.COLUMN_1 reference in the select statement of a.COLUMN_2 to be
    overwritten.
    In spite of this, I tried it, and it worked. I would like to
    understand why the sql works, and how sql actually executes the statement.
    Here is the sql:
    UPDATE TABLE_A a
    SET a.COLUMN_1 =
    (SELECT DISTINCT b1.COLUMN_1
    FROM TABLE_B b1
    WHERE b1.RELATED_CASE_ID =
    a.COLUMN_1 AND
    b1.RELATED_COLUMN_TYPE_CD = 'NEPHI'),
    a.COLUMN_2=
    (SELECT DISTINCT b2.COLUMN_2
    FROM TABLE_B b2
    WHERE b2.RELATED_COLUMN_1=
    a.COLUMN_1 AND
    b2.RELATED_COLUMN_TYPE_CD = 'NEPHI' AND
    b2.RELATED_COLUMN_2= a.COLUMN_2)
    WHERE a.COLUMN_1 = 100
    The table structure is as follows:
    TABLE_A: (primary keys are bolded) This is an associative table.
    Column_1 and Column_2 comprise the pk of one table; Column_3 and Column_4
    comprise the pk of another table. Assume that the Column_1 and Column_2
    values replacing the original values already exist in the parent table of
    which they form the pk).
    COLUMN_1
    COLUMN_2
    COLUMN_3
    COLUMN_4
    COLUMN_5
    TABLE_B: (primary keys are bolded) This is a reference table.
    COLUMN_1
    COLUMN_2
    RELATED_COLUMN_1
    RELATED_COLUMN_2
    RELATED_COLUMN_TYPE_CD
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    If you do an explain plan or set autotrace on against this update statement,
    you'll find that the select operations are actually executed first by Oracle
    - I believe because of the nature of the transaction. Thus, no problem.
    Brian Wilson
    U.S. Bancorp Piper Jaffray
    [email protected]
    Phone (612) 342-5682
    From: David Pettit[SMTP:[email protected]]
    Reply To: David Pettit
    Sent: Friday, April 30, 1999 1:58 PM
    To: '[email protected]'
    Subject: Embedded SQL against Oracle Question
    Software: Forte 3.0.J.
    Server Platform: HPUX 10.2
    Database: Oracle
    Problem Description: During the course of development, I ran into a
    problem using multiple columns in an sql UPDATE/SET statement. I was
    trying
    to update a.COLUMN_1 and a.COLUMN_2, which constitute part of the primary
    key of associative TABLE_A (a). In order for me to make the update, I
    needed to use the existing value of a.COLUMN_1 to lookup the new
    b.COLUMN_1
    in TABLE_B (b). Where a.COLUMN_1 = b.RELATED_COLUMN_1, I am able to find
    each b.COLUMN_2 that correspond to each a.COLUMN_2.
    I was able to resolve the issue by separating the two columns so
    that each had it's own select statement. Theoretically, it appears that
    this shouldn't work, because the SET statement for a.COLUMN_1 would cause
    the a.COLUMN_1 reference in the select statement of a.COLUMN_2 to be
    overwritten.
    In spite of this, I tried it, and it worked. I would like to
    understand why the sql works, and how sql actually executes the statement.
    Here is the sql:
    UPDATE TABLE_A a
    SET a.COLUMN_1 =
    (SELECT DISTINCT b1.COLUMN_1
    FROM TABLE_B b1
    WHERE b1.RELATED_CASE_ID =
    a.COLUMN_1 AND
    b1.RELATED_COLUMN_TYPE_CD = 'NEPHI'),
    a.COLUMN_2=
    (SELECT DISTINCT b2.COLUMN_2
    FROM TABLE_B b2
    WHERE b2.RELATED_COLUMN_1=
    a.COLUMN_1 AND
    b2.RELATED_COLUMN_TYPE_CD = 'NEPHI' AND
    b2.RELATED_COLUMN_2= a.COLUMN_2)
    WHERE a.COLUMN_1 = 100
    The table structure is as follows:
    TABLE_A: (primary keys are bolded) This is an associative table.
    Column_1 and Column_2 comprise the pk of one table; Column_3 and Column_4
    comprise the pk of another table. Assume that the Column_1 and Column_2
    values replacing the original values already exist in the parent table of
    which they form the pk).
    COLUMN_1
    COLUMN_2
    COLUMN_3
    COLUMN_4
    COLUMN_5
    TABLE_B: (primary keys are bolded) This is a reference table.
    COLUMN_1
    COLUMN_2
    RELATED_COLUMN_1
    RELATED_COLUMN_2
    RELATED_COLUMN_TYPE_CD
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    Nondeposit investment products are not insured by the FDIC, are
    not deposits or other obligations of or guaranteed by U.S. Bank
    National Association or its affiliates, and involve investment
    risks, including possible loss of the principal amount invested.
    Past performance does not guarantee future results. We consider
    our sources reliable. Accuracy and completeness are not guaranteed.
    Information is subject to change. Transactional details should not
    be relied on for tax purposes and do not supersede normal trade
    confirmations or statements. Messaging outside U.S. jurisdictions
    from U.S. Bancorp Piper Jaffray to non-institutional parties is not
    intended for solicitation purposes.
    Electronic mail sent through the Internet is not secure. We will
    not accept time-sensitive, action-oriented messages, transaction
    orders, fund transfer instructions or check stop payments
    electronically.
    If you are not the intended recipient, notify the Sender. This
    information is intended only for the person named above and for
    the purposes indicated. Do not distribute this message without
    written consent of the author. Non-business opinions may not
    reflect opinions of U.S. Bancorp Piper Jaffray and its affiliates.
    U.S. Bancorp Piper Jaffray and its affiliates reserve the right to
    monitor all e-mail.
    Securities products and services are offered through
    U.S. Bancorp Piper Jaffray Inc., member SIPC and NYSE, Inc.,
    a subsidiary of U.S. Bancorp.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Import command error while importing in oracle 8i database.

    Hi,
    Trying to import a schema using imp utility in oracle 8i using sucessfully exported dump file in oracle 11g. But getting below errors.
    IMP-00010: not a valid export file, header failed verification
    IMP-00000: Import terminated unsuccessfully
    Please provide any solution for this above error so that i can import a schema in Oracle 8i database.
    Thanks.

    dump file created in 11g database can't be imported in lower 8i version.
    Restrictions When Using Different Releases of Export and Import
    The following restrictions apply when you are using different releases of Export and Import:
    Export dump files can be read only by the Import utility because they are stored in a special binary format.
    Any export dump file can be imported into a later release of the Oracle database.
    The Import utility cannot read export dump files created by the Export utility of a later maintenance release. For example, a release 9.2 export dump file cannot be imported by a release 9.0.1 Import utility.
    Whenever a lower version of the Export utility runs with a later release of the Oracle database, categories of database objects that did not exist in the earlier release are excluded from the export.
    Export files generated by Oracle9i Export, either direct path or conventional path, are incompatible with earlier releases of Import and can be imported only with Oracle9i Import. When backward compatibility is an issue, use the earlier release or version of the Export utility against the Oracle9i database.
    Thanks
    Kuljeet Pal Singh
    Edited by: Kuljeet Pal Singh on Mar 19, 2012 7:43 PM

  • Can we install oracle 10g database on Windows Vista Home Edition?

    Can we install oracle 10g database on Windows Vista Home Edition?

    You didn't specify which Oracle10 Edition.
    In the case of SE/SE one/EE, with a paid license Supported has a mean impact on production environments with paid licenses, since you wouldn't run on an unsupported platform facing the risk of being left without technical support from Oracle in case of an emerging issue.
    For the XE Edition, this is not a certified combination, since the only certified editions are the Business, Enterprise, and the Ultimate editions, but you can try it, you don't have nothing to loose, supported, certified vs. unsupported in this case makes no difference since this XE is not supported either way (no patchsets, no bug fixes, no technical support from metalink), just an AS IS free software.
    On the license agreement terms displayed when you download the XE software it states:
    "No Technical Support
    Our technical support organization will not provide technical support, phone support, or updates to you for the programs licensed under this agreement."
    and
    "THE PROGRAMS ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. WE FURTHER DISCLAIM ALL WARRANTIES, EXPRESS AND IMPLIED, INCLUDING WITHOUT LIMITATION, ANY IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE."
    In case someone would be able to win a trial against oracle due to damage from the use of this software, the amount paid at maximum is 1,000.00 USD, not enough to even pay the lawyer's lunches.
    For the XE users the primary source of 'kind of support' is the oracle forums, either the installation forum, the general database or the specialized XE forum.
    Of course if this is for your own personal use for learning and testing and there are no third parties you could damage by doing this and if you don't have a paid license for this installation you may try it, but don't expect the Enterprise Manager to behave as defined by the manual, most of it won't work since the Home Edition doesn't have the privileges required for EM to work.
    If this is your personal computer and when you bought it the computer provider installed from factory Home Edition, and if you want something to work there, you can try to install a Virtual Machine and install Oracle 10g on a supported guest OS.
    ~ Madrid

  • SQL Developer 3.0 against Oracle 10g

    Hi,
    I have used SQL Developer in previous employments and prefer use it now (ie SQL Developer 3.0), but unsure if the mix will work.
    I am on a Windows Server 2003 Std 64bit Edition and with Service Pack 2. and have Oracle client 10g home with basic tools against an Oracle 10G database server.
    So before installing, I would like some tips on the best mix for Client and Server with respect to SQL Developer.
    I also understnad that it will require Java JDK install prior to SQL Developer. Will this require me to take into consideration current Java installs under
    "C:\Program Files (x86)\Java\jre6\bin" and dated back to 30 Sept 2010
    Many thanks before hand
    Chris

    You can can download SQL Developer with a JDK included. This is 32-bit, but will run fine in a 64-bit OS.
    Alternatively you can download the 64-bit version of SQL Developer. This requires you to have a 64-bit JDK.
    You can install multiple JDKs without interfering with each other. Your existing JRE installation won't work anyway as you need a JDK.
    If you download a JDK, don't get Java 7 as SQL Developer doesn't work properly with that. Get the latest version of Java 6.
    Edited by: Jim Smith on Dec 20, 2011 4:31 PM

  • Export and import Oracle 10G database

    Hello all
    Can anyone tell me once for all how can i backup oracle 10G database and restore it in other computer (export and import)
    thanks alot
    Ron

    Do you can access to metalink?
    If not, I copy an paste this doc's....
    Doc ID: Note:10767.1
    Subject: How to perform FULL System Export/Imports
    Type: BULLETIN
    Status: PUBLISHED
    Content Type: TEXT/X-HTML
    Creation Date: 18-APR-1994
    Last Revision Date: 30-AUG-2002
    Purpose
    This article highlights some important points to consider when performing
    a Full System Export and Import.
    Scope and Application
    It is intended to assist users performing FULL System Exports and Imports.
    A Full System Export and Import is a useful way to replicate or clean up
    a database. Please note the following guidelines when performing a Full
    System Export and Import:
    1. When performing the import, ensure you are pointing at the correct
    instance. Always check values for the SID and two task driver before
    proceeding.
    *Note:   On Unix systems, just entering a sub-shell, such as using
    C-shell, can change the database that the import would work
    against.
    2. When possible, it is advisable to take a physical copy of the
    exported database and the database you intend to import into before
    starting the import. This ensures any mistakes are reversible.
    3. NEVER run a FULL SYSTEM IMPORT on a machine that has more than one
    database UNLESS you are 100% sure all tablespaces have been
    pre-created. A full import will create any undefined tablespaces
    using the same datafile names as the exported database. There are
    situations where this is very dangerous:
    -> If the datafiles belong to ANY other database, they will be
    CORRUPTED. This is especially true if the exported database is
    on the same machine, because its datafiles will be re-used by
    the database you are importing into.
    -> If the datafiles have names that clash with existing operating
    system files.
    4. When exporting, it is advisable to also produce a report showing
    information you may need before / after the import:
    -> List the tablespaces and datafiles
    -> List the rollback segments
    -> List a count, by user, of each object type such as tables,
    indexes, etc.
    This enables you to ensure that tablespaces have been pre-created
    and to check the success of the import after it is complete.
    5. If you are creating a completely new database from an export, remember
    to create an extra rollback segment in SYSTEM, and make this available
    in the init.ora file before proceeding with the import.
    6. There are some versions of export that do not retain sequence numbers
    correctly. It is advisable to select next_value for each sequence
    after the export so that these can be checked after import.
    Following these guidelines will help you to avoid major problems.
    Doc ID: Note:174226.1
    Subject: How To Copy an Oracle Database To Another Machine
    Type: HOWTO
    Status: PUBLISHED
    Content Type: TEXT/X-HTML
    Creation Date: 12-OCT-2001
    Last Revision Date: 01-OCT-2003
    goal: How to copy an Oracle database to another machine
    fact: Oracle Server - Enterprise Edition
    fix:
    Pre-requisites: The copy is between 2 machines, both have to be on the same OS
    and have to have exactly the same database version installed.
    1. Make sure the database you want to copy was closed with a SHUTDOWN IMMEDIATE,
    SHUTDOWN NORMAL or SHUTDOWN TRANSACTIONAL.
    2. Copy init.ora and control files to create instance and be able to go in
    mount mode. Check the init.ora for the locations where the controlfiles have
    to be, if those locations are not valid on the machine put the control files on
    different places and adjust the init.ora accordingly.
    3.a. Copy the datafiles (all of them).
    b. Copy the redo-logfiles (all of them).
    4.a. (Unix only) Set the environment variables:
    ORACLE_SID - set to the database name you wish to create
    ORACLE_HOME - set to full pathname of the Oracle system home directory
    PATH - needs to include $ORACLE_HOME/bin
    b. (NT/2000 only) Do 'set ORACLE_SID=<SID>'
    Use oradim to create the service for the instance. For more information
    on oradim please refer to (the part that refers to creating a new instance):
    Note:68720.1 Creating a new 7.3, 8.0, 8.1 Instance/Database
    5. Use servermanager (check the name to use for your version of oracle) or
    sqlplus (version 9i and above) to startup the database in mount mode.
    Do
    CONNECT INTERNAL/<PASSWORD>
    then
    STARTUP MOUNT
    Then do a rename of the copied datafiles if they are not in the same path as on
    the other machine. For all the files that are in the result of the query:
    SELECT NAME FROM V$DATAFILE;
    do
    ALTER DATABASE RENAME FILE '<oldfullpath>\<filename>' to <
    newfullpath>\<filename>';
    6. Query the datadictionary for the old location of the redolog files using:
    SELECT MEMBER FROM V$LOGFILE;
    If the new place is not the same as the old do:
    ALTER DATABASE RENAME FILE '<oldfullpath>\<redologfilename>' to &
    lt;newfullpath>\<redologfilename>';
    7. Now open the database:
    ALTER DATBASE OPEN;
    ******************************************************************

  • Can Oracle 7i and 8i be connected from Oracle 9i database

    I want to know if i can do the following. That means is it possible in production scenario. If yes then how and will it affect the performance to a great extend.
    We are now upgrading the application server to weblogic 10.3 . But this server supports only Oracle 9i and above. But we have two more data server which are Oracle 8i and Oracle 7i. These databases will be upgraded later on but not now. So the problem is i can not connect to these Oracle database versions if i use Weblogic 10.3. So i wanted to know if there is any possibility of connecting the application server to a intermideate Oracle 9i database which will act as a bridge from Application server to Oracle 7i and 8i. Can Oracle 9i connect to Oracle 7i and 8i. If yes then how. You can provide me online references if any.
    Thanks in advance. Waiting for your reply.

    manoj.tcs wrote:
    The connection what you are refering is from a normal pc to Oracle 7i or 8i database. But i want to connect from Oracle 9i to Oracle 8iWhen connecting from one db to another (via a db_link) the 'calling' db is just another client to the 'called' db. if you can connect to 7.x (there was no 7i) with a 9.x sqlplus, then you should be able to connect with a 9.x database. At a previous job, we did something similar to get an app compiled against 8.1 to use a 10.2 database - set up a 9.2 intermediary that had nothing but db_links and synonyms pointing on to the 10g.
    However, I wouldn't bet the company on making your scenario work. You really should upgrade your databases first.

  • Error using setTimestamp and ojdbc14 against Oracle 7.3.4

    I am having a problem setting a timestamp value against Oracle 7.3.4 and Oracle 8.0.6 databases.
    Here's the code:
    public Tester
    (String passedUsername, String passedPassword, String passedHostName, String passedPort, String passedSID)
    throws SQLException {
    // Establish a database connection
    try {
    Class.forName("oracle.jdbc.driver.OracleDriver");
    } catch (ClassNotFoundException e) { throw new SQLException("Can't find class oracle.jdbc.driver.OracleDriver"); }
    StringBuffer myStringBuffer = new StringBuffer(50);
    myStringBuffer.append("jdbc:oracle:thin:@");
    myStringBuffer.append(passedHostName);
    myStringBuffer.append(":");
    myStringBuffer.append(passedPort);
    myStringBuffer.append(":");
    myStringBuffer.append(passedSID);
    Connection myConnection = DriverManager.getConnection(myStringBuffer.toString(), passedUsername, passedPassword);
    myConnection.setAutoCommit(false);
    // Insert the test record
    PreparedStatement myPreparedStatement = null;
    try {
    myPreparedStatement = myConnection.prepareStatement("insert into test_table(date_field) values (?)");
    myPreparedStatement.setTimestamp(1, new Timestamp(System.currentTimeMillis()));
    myPreparedStatement.execute();
    } finally {
    if (myPreparedStatement != null) myPreparedStatement.close();
    Here's the error that occurs under Oracle 7.3.4:
    java.sql.SQLException: ORA-01024: invalid datatype in OCI call
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:573)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1891)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1093)
         at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2047)
         at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1940)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2709)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:589)
         at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:656)
         at Tester.<init>(Tester.java:46)
         at Tester.main(Tester.java:62)
    Here's the error that occurs under Oracle 8.0.6:
    java.sql.SQLException: ORA-03115: unsupported network datatype or representation
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.ttc7.TTIoer.processError(TTIoer.java:289)
         at oracle.jdbc.ttc7.Oall7.receive(Oall7.java:573)
         at oracle.jdbc.ttc7.TTC7Protocol.doOall7(TTC7Protocol.java:1891)
         at oracle.jdbc.ttc7.TTC7Protocol.parseExecuteFetch(TTC7Protocol.java:1093)
         at oracle.jdbc.driver.OracleStatement.executeNonQuery(OracleStatement.java:2047)
         at oracle.jdbc.driver.OracleStatement.doExecuteOther(OracleStatement.java:1940)
         at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:2709)
         at oracle.jdbc.driver.OraclePreparedStatement.executeUpdate(OraclePreparedStatement.java:589)
         at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:656)
         at Tester.<init>(Tester.java:46)
         at Tester.main(Tester.java:62)
    Note that the table in the insert statement does not have to exist. You can even replace the statement with a garbage statement.
    The error is produced regardless.
    The code is being compiled under JDK 1.4
    I am using the latest version of the JDBC drivers (i.e. ojdbc14.jar)
    The code works fine under Oracle 8.1.7 and 9.0.1
    My code needs to access all four of these database version, sometimes concurrently, so I can only use a single driver class (i.e. I can't swap out ojdbc14.jar for classes12.zip).
    Any feedback would be appreciated!

    Hi,
    Only to say that we have the same problem like you:
    - Error ORA-01024 when connection to Oracle 8.0.1 on Sun Solaris
    - Error ORA-03115 when connection to Oracle 8.1.5 on Windows
    We are thinking about upgrading Oracle. Is it the only solution?
    Thank you

  • Oracle 9i Database 9.2.0.1.0 Issues...

    Hi Friends,
    I downloaded the Oracle DB 9i Enterprise Edition (9.2.0.1) from Oracle's website for my class assignment. When I got to the screen that says "Installation types" Oracle 9i Database 9.2.0.1.0 and hit the NEXT button the universal installer disappears with no warning right at 36%. So then I tried to choose "Custom" instead of Enterprise Edition and the same exact thing happened. My computer specs are as follows:
    O/S: Windows XP Professional
    CPU: 2.8 Ghz
    Phys. Memory: 1,024 MB
    Available Physical Memory: 324 MB
    Hard Disk: 210 GB free space
    I would appreciate ANY help as my assignment is due on Monday. I have uninstalled and reinstalled so many times and nothing seems to work. My friend suggested that there may be a DLL file causing conflict somewhere. I don't know...I just need help and I am so frustrated with this! Thanks.

    Hello Everyone,
    I found a log file in c:\program files\oracle\inventory\logs. I am not sure if this will show anything but I am so desparate right now that I am willing to try just about anything. So...below please find my log file when I tried to do the install. If this is the wrong log file, can you please tell me where to go to get the right one. Thanks friends! This is the most frustrating thing...
    Environment variables:
         ORACLE_HOME =
         PATH = C:\DOCUME~1\User\LOCALS~1\Temp\OraInstall2006-06-05_12-41-21AM\oui\bin\win32;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\QuickTime\QTSystem\
         CLASSPATH = C:\Program Files\Java\jre1.5.0_06\lib\ext\QTJava.zip
    Username is: User
    Unable to read the list of homes from the inventory.
    The installer version is 2.2.0.12.0
    *** Welcome Page***
    Setting value of FROM_LOCATION to C:\9iDB\Disk1\stage\products.jar
    Setting value of SHOW_COMPONENT_LOCATIONS_PAGE to true
    Setting value of SHOW_CUSTOM_TREE_PAGE to true
    Setting value of SHOW_SUMMARY_PAGE to true
    Setting value of SHOW_INSTALL_PROGRESS_PAGE to true
    Setting value of SHOW_REQUIRED_CONFIG_TOOL_PAGE to true
    Setting value of SHOW_OPTIONAL_CONFIG_TOOL_PAGE to true
    Setting value of SHOW_RELEASE_NOTES to true
    Setting value of SHOW_END_SESSION_PAGE to true
    Setting value of SHOW_SPLASH_SCREEN to true
    Setting value of SHOW_WELCOME_PAGE to true
    Setting value of SHOW_ROOTSH_CONFIRMATION to true
    Setting value of SHOW_EXIT_CONFIRMATION to true
    Setting value of NEXT_SESSION to true
    Setting value of NEXT_SESSION_ON_FAIL to true
    Setting value of SHOW_DEINSTALL_CONFIRMATION to true
    Setting value of SHOW_DEINSTALL_PROGRESS to true
    Setting value of INVENTORY_LOCATION to C:\Program Files\Oracle\Inventory
    Setting value of UNIX_GROUP_NAME to
    Initializing inventory setup WCCE
    Doing operation in inventory setup WCCE
    Setting value of CLUSTER_NODES to
    *** Cluster Node Selection Page***
    ClusterNodes = CLUSTER_NODES =
    Setting value of FROM_LOCATION to C:\9iDB\Disk1\stage\products.jar
    Setting value of ORACLE_HOME to C:\oracle\ora92
    Setting value of ORACLE_HOME_NAME to OraHome92
    *** File Locations Page***
    FromLocation = FROM_LOCATION = C:\9iDB\Disk1\stage\products.jar
    ToLocation = ORACLE_HOME = C:\oracle\ora92
    ToName = ORACLE_HOME_NAME = OraHome92
    Initializing installer access setup
    Setting value of ORACLE_HOME to C:\oracle\ora92
    Setting value of ORACLE_HOME_KEY to Software\ORACLE\HOME0
    Setting value of ORACLE_HOME_FOLDER to Oracle - OraHome92
    Setting value of ORACLE_HOME_SERVICE to OraHome92
    Setting value of ToplevelComp to oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 912 ][OH:2]
    Setting value of SELECTED_LANGUAGES to [en]
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_apache_ejb
    Setting value of PROD_HOME to C:\oracle\ora92/jpi
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_fonts
    Setting value of PROD_HOME to C:\oracle\ora92/rts
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.server
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.ops
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.partitioning
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.spatial
    Setting value of PROD_HOME to C:\oracle\ora92/olap
    Setting value of PROD_HOME to C:\oracle\ora92/dmt
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.ordcac
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.infrastructure
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking
    Setting value of PROD_HOME to C:\oracle\ora92\wf
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.client
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_utilities_util
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_plsql
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_dbv
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.workflow.client
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_javavm_cmp
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.ano
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_workflow_mailer
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.devtools
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_mig
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_oci_top
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.oapps_agentext
    Setting value of PROD_HOME to C:\oracle\ora92\oem_webstage
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_prod
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_otrace
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.intermedia.imserver
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_ldap_rsf_cmp
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.cman
    Setting value of PROD_HOME to C:\oracle\ora92/tg4ifmx
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.locator
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_reporting
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_webserver
    Setting value of PROD_HOME to C:\oracle\ora92/tg4sybs
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_hs_odbc
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_prod
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emcltprod
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_hs_olefs
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_xml
    Setting value of PROD_HOME to C:\oracle\ora92\Apache\Apache
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_hs_olesql
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_dbscripts
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_nid
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_hs_common
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.context
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.proc
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.apache.ojsp
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.webdb.modplsql
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_prod
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.names
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92\sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.java.ojsp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_p2k_xmldevkit
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.frms_agentext
    Setting value of PROD_HOME to C:\oracle\ora92\sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.apache.xdk
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_options_ano_dce
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/Omwb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_expimp
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.winprod
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.sqlsrv_agentext
    Setting value of PROD_HOME to C:\oracle\ora92\soap
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92\sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.emd_agentext
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.oecm_agentext
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.agent_ext.ows_agentext
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.oemagent
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.oemagent.agentca
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.assistants.dbma
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.ordsmv
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.ordaudio
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.ordimg
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.intermedia.imcom
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.cartridges.ordcom
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_prod
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/tg4msql
    Setting value of PROD_HOME to C:\oracle\ora92/BC4J
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.intermedia.jai
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.rdbms.ovm
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_demo
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.utilities.perfmon
    Setting value of PROD_HOME to C:\oracle\ora92/soap
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_p2k_xmldevkit
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.netmgr.emint
    Setting value of PROD_HOME to C:\oracle\ora92/tg4tera
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/soap
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_hs_oledb
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_sqlj
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_parser_plsql
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_xsql
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_classgen_java
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_transview
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_transx
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.xml.xml_ncomp
    Setting value of PROD_HOME to C:\oracle\ora92\pg4mqseries
    Setting value of PROD_HOME to C:\oracle\ora92/pg4appc
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_parser_cplus
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_classgen_cplus
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_bali_ohw
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_bali_cabo
    Setting value of PROD_HOME to C:\oracle\ora92/sysman/ocm
    Setting value of PROD_HOME to C:\oracle\ora92/demo/schema
    Setting value of PROD_HOME to C:\oracle\ora92\mgw
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_seeddb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_seeddb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_seeddb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_advrep
    Setting value of PROD_HOME to C:\oracle\ora92/tg4drda
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.netsrv
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_options_ano_ssl
    Setting value of PROD_HOME to C:\oracle\ora92/oracel_rdbms_sqlldr
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_oci
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.rdbms.sqlplus
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_prod
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.ott
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.olap.cv
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_occi
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.oo4o
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.oledb
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_networking_snmp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_workflow_builder
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.procob
    Setting value of PROD_HOME to C:\oracle\ora92/dbui
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_workflow_common
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.procob18
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_options_ano_ssl_owm
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.ano.sns
    Setting value of PROD_HOME to C:\oracle\ora92in
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.java.javavm.javatools
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/oramts
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_sqlj_sqljtrans
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_xml_xsu
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.mmc.admin
    Setting value of PROD_HOME to C:\oracle\ora92/jle
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.mmc.primary
    Setting value of PROD_HOME to C:\oracle\ora92/oracle.interMedia.imclient
    Setting value of PROD_HOME to C:\oracle\ora92\Apache\Jserv
    Setting value of PROD_HOME to C:\oracle\ora92\Apache\Jsdk
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_rman
    Setting value of PROD_HOME to C:\oracle\ora92\ocs4j
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_aqapi
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_sqlj_sqljruntime
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.ifa
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_oci12
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.assistants.dbca
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_oci14
    Setting value of PROD_HOME to C:\oracle\ora92\Apache\Apache
    Setting value of PROD_HOME to C:\oracle\ora92\Apache\perl
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.netcltprod
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.netclt
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.networking.netmgr
    Setting value of PROD_HOME to C:\oracle\ora92/oem_webstage
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rdbms_expimp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_networking_netca
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_xml_parser_c
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.assistants.acf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_javavm_visiorb
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.options.ops.opsca
    Setting value of PROD_HOME to C:\oracle\ora92\jdk
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.emprod.oemagent.base_oemagent
    Setting value of PROD_HOME to C:\oracle\ora92/classes/oracle/sysman/vif
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_options_olap_api
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_olap_wrksht
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_tools_regexp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_fonts
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_utilities_util_common
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.sysman.prereq
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.rsf
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman/expert
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_sqlserver
    Setting value of PROD_HOME to C:\oracle\ora92/sysman
    Setting value of PROD_HOME to C:\oracle\ora92/sysman/admin
    Setting value of PROD_HOME to C:\oracle\ora92/sysman/expert
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_em_nls
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_vmqshared
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_rdbms_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_dbjava_rsf
    Setting value of PROD_HOME to C:\oracle\ora92
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_nlsrtl_rsf
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.p2k.precomp_common
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_net_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_precomp_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/dcommon
    Setting value of PROD_HOME to C:\oracle\ora92/help
    Setting value of PROD_HOME to C:\oracle\ora92/help
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.xml.parser.java
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.doc.windoc
    Setting value of PROD_HOME to C:\oracle\ora92/jewt
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_oracore_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/kodiak
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_platform_rsf
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.mmc.config
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_plsql_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_ldap_rsf_cmp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_sysman_oembase_ela
    Setting value of PROD_HOME to C:\oracle\ora92/ice
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_install_instcommon
    Setting value of PROD_HOME to C:\oracle\ora92/ewt
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_slax_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_tools_share
    Setting value of PROD_HOME to C:\oracle\ora92\oracle.apache.isqlplus.ise
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_oci11
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_thin14
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_ssl_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_agent_rsf_agent_rsf_cmp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_clntsh_rsf_clntsh_rsf_cmp
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_thin12
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_otrace_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_rsf_rdbms_rsf
    Setting value of PROD_HOME to C:\oracle\ora92/lib
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_oci_common
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_thin11
    Setting value of PROD_HOME to C:\oracle\ora92/oracle_java_jdbc_jdbc_common
    Setting value of PROD_HOME to C:\Program Files\Oracle\Inventory\..\oui
    Unable to read C:/Program Files/Oracle/Inventory/ContentsXML/comps.xml. Some inventory information may be lost.
    Calling query areasQueries2.2.0.7.0 getInventoryLocation
    Query returned : C:\Program Files\Oracle\Inventory
    Setting value of PROD_HOME to C:\Program Files\Oracle\Inventory\..\jre\1.3.1
    Setting value of PROD_HOME to C:\Program Files\Oracle\Inventory\..\jre\1.1.8
    Doing operation for installer access setup
    Setting value of SELECTED_LANGUAGES to [en]
    Setting value of ToplevelComp to oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 912 ][OH:2]
    *** Available Products Page***
    TopLevelComp = ToplevelComp = oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 912 ][OH:2]
    Setting value of ToplevelComp to oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 912 ][OH:2]
    Setting value of DEP_MODE to EE
    Setting value of TLDepModes to EE,
    *** Installation Types Page***
    DepMode = DEP_MODE = EE
    TLDepModes = TLDepModes = EE,
    The selected install type is "Enterprise Edition"
    Setting value of DEP_MODE to EE
    Install type for "Oracle9i Database 9.2.0.1.0 " is "Enterprise Edition"
    Install type for "Enterprise Edition Options 9.2.0.1.0 " is "Typical"
    Install type for "Oracle9i Real Application Clusters 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Partitioning 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Spatial 9.2.0.1.0 " is "Typical"
    Install type for "Oracle OLAP 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Data Mining 9.2.0.1.0 " is "Typical"
    Install type for "Oracle COM Automation Feature 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Net Services 9.2.0.1.0 " is "Server.Typical"
    Install type for "Oracle9i 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Database Utilities 9.2.0.1.0 " is "Typical"
    Install type for "PL/SQL 9.2.0.1.0 " is "Typical"
    Install type for "Database Verify Utility 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JVM 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Advanced Security 9.2.0.1.0 " is "Typical"
    Install type for "Oracle9i Development Kit 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Enterprise Manager Products 9.2.0.1.0 " is "Enterprise Edition"
    Install type for "Migration Utility 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Programmer 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Intelligent Agent Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Applications Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Manager Web Site 9.2.0.1.0 " is "Complete"
    Install type for "Oracle9i Syndication Server 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Trace 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Ultra Search Server 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "Sun JDK 1.3.1.0.1a " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Management Server 9.2.0.1.0 " is "Complete"
    Install type for "Oracle interMedia Locator 9.2.0.1.0 " is "Typical"
    Install type for "Reporting Framework 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Webserver Integration 9.2.0.1.0 " is "Complete"
    Install type for "Generic Connectivity Using ODBC 9.2.0.1.0 " is "Typical"
    Install type for "iSQL*Plus 9.2.0.1.0 " is "Typical"
    Install type for "Generic Connectivity Using OLEDB - FS 9.2.0.1.0 " is "Typical"
    Install type for "XML 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "XML Parser for Java 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle HTTP Server 9.2.0.1.0 " is "Typical"
    Install type for "Generic Connectivity Using OLEDB - SQL 9.2.0.1.0 " is "Typical"
    Install type for "Database SQL Scripts 9.2.0.1.0 " is "Typical"
    Install type for "New Database ID 9.2.0.1.0 " is "Typical"
    Install type for "Generic Connectivity Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Text 9.2.0.1.0 " is "Typical"
    Install type for "Apache Configuration for Oracle Java Server Pages 1.1.2.3.0 " is "Typical"
    Install type for "Oracle Mod PL/SQL Gateway 3.0.9.8.3b " is "Typical"
    Install type for "Oracle Dynamic Services Server 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Ultra Search Middle-Tier 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Diagnostics Pack 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "Enterprise Manager Client 9.2.0.1.0 " to "Maximum (Complete)". Install type already set to "Maximum (Complete)". Seting it to "Custom (Custom)"
    Install type for "Oracle Java Server Pages 1.1.3.1.0 " is "Typical"
    Install type for "Oracle XML Developer's Kit 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Forms Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Tuning Pack 9.2.0.1.0 " is "Complete"
    Install type for "Apache Configuration for Oracle XML Developer's Kit 9.2.0.1.0 " is "Typical"
    Install type for "Export/Import 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Windows Interfaces 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Management Pack for Oracle Applications 9.2.0.1.0 " is "Complete"
    Install type for "MIcrosoft SQLServer(TM) Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Oracle SOAP for JServ 2.0.0.0.0a " is "Typical"
    Install type for "Oracle interMedia Client Option 9.2.0.1.0 " is "Typical"
    Install type for "Oracle EMD Agent Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Oracle eBusiness Management Extensions 9.2.0.1.0 " is "Typical"
    Install type for "Oracle HTTP Server Extensions 9.2.0.1.0 " is "Typical"
    Install type for "PL/SQL Embedded Gateway 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Intelligent Agent 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Intelligent Agent Config Tool 9.2.0.1.0 " is "Typical"
    Install type for "Database Upgrade Assistant 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Video 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Audio 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Image 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Data Management Services Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Annotator 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Change Management Pack 9.2.0.1.0 " is "Complete"
    Install type for "BC4J Runtime for Database 9.0.2.692.1 " is "Typical"
    Install type for "Oracle interMedia Web Client 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Client Demos 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Java Media Framework Client 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Client Compatibility Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Java Advanced Imaging 9.2.0.1.0 " is "Typical"
    Install type for "Database Workspace Manager 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Manager Client 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Integrated Applications 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Console 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Ultra Search Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Database Demos 9.2.0.1.0 " is "Typical"
    Install type for "Oracle SOAP Server 2.0.0.0.0a " is "Typical"
    Install type for "Enterprise Manager Database Applications 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "SQL*Plus 9.2.0.1.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle XML Runtime Components 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "XML Parser for PL/SQL 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "XML Class Generator for Java 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "XML Transviewer Beans 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "XML Transx 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Net Integration 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Workflow Manager 9.2.0.1.0 " is "Complete"
    Install type for "Oracle SOAP Client 2.0.0.0.0a " is "Typical"
    Install type for "Common Files For Generic Connectivity Using OLEDB 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Manager Common Files 9.2.0.1.0 " is "Complete"
         Conflict while setting install type of "Secure Socket Layer 9.2.0.1.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Oracle Java Tools 9.2.0.1.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Enterprise Manager Base Classes 9.2.0.1.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Oracle JFC Extended Windowing Toolkit 4.1.10.0.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle SQLJ 9.2.0.1.0 " is "Typical"
    Install type for "XML Parser for PL/SQL 9.2.0.1.0 " is "Custom"
    Install type for "XSQL Servlet 9.2.0.1.0 " is "Typical"
    Install type for "XML Class Generator for Java 9.2.0.1.0 " is "Custom"
    Install type for "XML Transviewer Beans 9.2.0.1.0 " is "Custom"
    Install type for "XML Transx 9.2.0.1.0 " is "Custom"
    Install type for "XML Parser for Oracle JVM 9.2.0.1.0 " is "Typical"
    Install type for "XML Parser for C++ 9.2.0.1.0 " is "Typical"
    Install type for "XML Class Generator for C++ 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Help for the Web 1.0.7.0.0 " is "Complete"
    Install type for "Oracle UIX 2.0.20.0.0 " is "Complete"
         Conflict while setting install type of "Oracle Extended Windowing Toolkit 3.4.13.0.0 " to "Typical (Typical)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Change Management Common Files 9.2.0.1.0 " is "Complete"
         Conflict while setting install type of "Oracle Intelligent Agent Base Component Files 9.2.0.1.0 " to "Complete (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Common Schema Demos 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Message Gateway Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Starter Database 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Complete OLTP Starter Database 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Complete DSS Starter Database 9.2.0.1.0 " is "Typical"
    Install type for "Advanced Replication 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Net Listener 9.2.0.1.0 " is "Typical"
    Install type for "Secure Socket Layer 9.2.0.1.0 " is "Custom"
    Install type for "SQL*Loader 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Call Interface (OCI) 9.2.0.1.0 " is "Typical"
    Install type for "SQL*Plus 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Required Support Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Documentaion Required Support Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Object Type Translator 9.2.0.1.0 " is "Typical"
    Install type for "Oracle OLAP CWM Lite 9.2.0.1.0 " is "Typical"
    Install type for "Oracle OLAP Cube Viewer 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "Oracle OLAP Worksheet 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Oracle C++ Call Interface 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Objects for OLE 9.2.0.4.4 " is "Typical"
    Install type for "Oracle Provider for OLE DB 9.2.0.1.0 " is "Typical"
    Install type for "Oracle SNMP Agent 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Database User Interface 2.2.11.0.0 " is "Typical"
    Install type for "Oracle Wallet Manager 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Assistant Common Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Authentication and Encryption 9.2.0.1.0 " is "Typical"
    Install type for "Oracle ODBC Driver 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Java Tools 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Visigenics ORB 3.4.0.0.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Java Runtime Environment 1.1.8.16.0 " to "Custom (Custom)". Install type already set to "Maximum (Complete)". Seting it to "Custom (Custom)"
    Install type for "Enterprise Manager Paging Server 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Services For Microsoft Transaction Server 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Login Assistant 9.2.0.1.0 " is "Custom"
    Install type for "SQLJ Translator 9.2.0.1.0 " is "Typical"
    Install type for "Oracle XML SQL Utility 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Administration Assistant for Windows NT 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Java Layout Engine 2.0.1.0.0 " is "Complete"
         Conflict while setting install type of "Bali Share 1.1.17.0.0 " to "Maximum (Complete)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Snap-In Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle interMedia Java Client 9.2.0.1.0 " is "Typical"
    Install type for "Apache JServ 1.1.0.0.0g " is "Typical"
    Install type for "JSDK 2.0.0.0.0d " is "Typical"
    Install type for "Recovery Manager 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Caching Service for Java 2.1.0.0.0a " is "Typical"
    Install type for "Advanced Queueing (AQ) API 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC/OCI Interfaces 9.2.0.1.0 " is "Typical"
    Install type for "SQLJ Runtime 9.2.0.1.0 " is "Typical"
    Install type for "Oracle INTYPE File Assistant 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.2 9.2.0.1.0 " is "Typical"
    Install type for "Database Configuration Assistant 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.4 9.2.0.1.0 " is "Typical"
    Install type for "Apache Web Server files 1.3.22.0.0a " is "Typical"
    Install type for "Oracle Perl Interpreter 5.00503.0.0.0c " is "Typical"
    Install type for "Oracle Net 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Net Manager 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Manage Website Translated Files 9.2.0.1.0 " is "Complete"
    Install type for "Character Set Migration Utility 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Net Configuration Assistant 9.2.0.1.0 " is "Typical"
         Conflict while setting install type of "Oracle9i Real Application Clusters Management 9.2.0.1.0 " to "Typical (Typical)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "XML Parser for C 9.2.0.1.0 " is "Typical"
    Install type for "Enterprise Manager Paging and OMS Common Files 9.2.0.1.0 " is "Complete"
    Install type for "Assistant Common Files 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Oracle Help For Java 3.2.13.0.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Oracle Code Editor 1.2.1.0.0A " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Visigenics ORB 3.4.0.0.0 " is "Custom"
    Install type for "Oracle Directory Manager 9.2.0.1.0 " is "Complete"
    Install type for "Oracle9i Real Application Clusters Management 9.2.0.1.0 " is "Custom"
    Install type for "Sun JDK 1.3.1.0.1a " is "Custom"
         Conflict while setting install type of "Sun JDK extensions 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Internet Directory Client Common Files 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Intelligent Agent Base Component Files 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Oracle Net Required Support Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Oracle9i Globalization Support 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Oracle Core Required Support Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
         Conflict while setting install type of "Utilities Common Files 9.2.0.1.0 " to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Developer Server Forms Manager 9.2.0.1.0 " is "Typical"
    Install type for "Oracle OLAP API 9.2.0.1.0 " is "Typical"
    Install type for "Oracle OLAP Worksheet 9.2.0.1.0 " is "Custom"
    Install type for "regexp 2.0.20.0.0 " is "Typical"
    Install type for "Oracle Display Fonts 9.0.2.0.0 " is "Typical"
    Install type for "Enterprise Manager Quick Tours 9.2.0.1.0 " is "Complete"
    Install type for "Utilities Common Files 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Installation Prerequisite Checks 9.2.0.1.0 " is "Complete"
    Install type for "Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Base Classes 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Events 9.2.0.1.0 " is "Typical"
    Install type for "Capacity Planner 9.2.0.1.0 " is "Complete"
    Install type for "Performance Manager 9.2.0.1.0 " is "Complete"
    Install type for "SQL Analyze 9.2.0.1.0 " is "Complete"
    Install type for "Trace DataViewer 9.2.0.1.0 " is "Complete"
    Install type for "Expert 9.2.0.1.0 " is "Complete"
    Install type for "Index Tuning Wizard 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Win32 Apps Bridge 9.2.0.1.0 " is "Complete"
    Install type for "SQLServer Monitoring Option 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Translated Files 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Win32 Application Common Files 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Expert Common Files 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Win32 App Translated Files 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Shared Libraries 9.2.0.1.0 " is "Complete"
    Install type for "XDK Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "DBJAVA Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i Globalization Support 9.2.0.1.0 " is "Custom"
    Install type for "Precompiler Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Net Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Precompiler Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Documentaion Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Help For Java 3.2.13.0.0 " is "Custom"
    Install type for "Oracle Help For Java 4.1.13.0.0 " is "Custom"
    Install type for "XML Parser for Java 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i Windows Documentation 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JFC Extended Windowing Toolkit 4.1.10.0.0 " is "Custom"
    Install type for "Oracle Core Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Code Editor 1.2.1.0.0A " is "Custom"
    Install type for "Platform Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Remote Configuration Agent 9.2.0.1.0 " is "Typical"
    Install type for "PL/SQL Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "LDAP Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Minimal Integration 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Ice Browser 5.06.8.0.0 " is "Custom"
    Install type for "Installation Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Extended Windowing Toolkit 3.4.13.0.0 " is "Custom"
    Install type for "Parser Generator Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Bali Share 1.1.17.0.0 " is "Custom"
    Install type for "iSQL*Plus Extension for Windows 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.1 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC Development Drivers 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC Thin Driver for JDK 1.4 9.2.0.1.0 " is "Typical"
    Install type for "SSL Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Agent Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Client Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC Thin Driver for JDK 1.2 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Trace Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "RDBMS Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Sun JDK extensions 9.2.0.1.0 " is "Custom"
    Install type for "JDBC/OCI Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle JDBC Thin Driver for JDK 1.1 9.2.0.1.0 " is "Typical"
    Install type for "JDBC Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Universal Installer 2.2.0.12.0 " is "Custom"
    Install type for "Java Runtime Environment 1.3.1.1.0a " is "Custom"
    Install type for "Java Runtime Environment 1.1.8.16.0 " is "Custom"
    Calling query areasQueries2.2.0.7.0 getComponentInstallTypeName
    Query returned : EE
    Calling query generalQueries2.2.0.7.0 getOSName
    Query returned : NT_X86
    Calling query generalQueries2.2.0.7.0 getOSVer
    Query returned : 5.1
    Calling query generalQueries2.2.0.7.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    Query returned : true
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.server
    startVersion = 8.1.0.0.0
    endVersion = 9.2.0.9.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.client
    startVersion = 8.1.0.0.0
    endVersion = 9.2.0.9.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.client
    startVersion = 8.1.0.0.0
    endVersion = 9.2.0.9.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.iappserver.iapptop
    startVersion = 9.0.2.0.0
    endVersion = 9.0.9.0.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.iappserver.infrastructure
    startVersion = 9.0.2.0.0
    endVersion = 9.0.9.0.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.iappserver.devcorner
    startVersion = 9.0.2.0.0
    endVersion = 9.0.9.0.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.networking.netclt
    startVersion = 8.1.3.0.0
    endVersion = 9.0.0.0.0
    acceptCompatible = null
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\nt.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\win95.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\win98.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\windows.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\netware.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\os2.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\dos.rgs
    Query returned : false
    Calling query WinSetAclQuery1.0.2 setPermissions
    dirName = C:\oracle\ora92
    isAdmin = false
    Query returned : 0
    Calling query PrerequisiteQueries1.1.3 getWin32VideoColorBits
    Query returned : 32
    Calling query generalQueries2.2.0.7.0 getTotalPhysicalMemory
    Query returned : 1046620
    Calling query w32RegQueries2.2.0.7.0 hasAdminPrivileges
    Query returned : true
    Calling query PrerequisiteQueries1.1.3 getWin32OSLevel
    Query returned : Service Pack 2
    Setting value of PRE_REQUISITE to true
    Calling query globalVarQueries2.1.0.4.0 setGlobalVariable
    variable = oracle.rdbms.installing
    value = true
    Query returned : true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to false
    # The pre-requisite for the component Oracle9i Real Application Clusters 9.2.0.1.0 has failed.
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to false
    # The pre-requisite for the component Oracle9i Real Application Clusters Management 9.2.0.1.0 has failed.
    Calling query generalQueries2.2.0.7.0 isCurrentPlatformInGroup
    platGroup = UNIX
    Query returned : false
    Calling query rgsQueries2.2.0.7.0 isProductInstalled
    Location = C:\oracle\ora92
    InternalName = w32rsf80
    MaxVersion = 8.0.7.0.0
    MinVersion = 8.0.3.0.0
    Query returned : false
    Calling query rgsQueries2.2.0.7.0 isProductInstalled
    Location = C:\oracle\ora92
    InternalName = w32rsf73
    MaxVersion = 7.3.5.0.0
    MinVersion = 7.3.1.0.0
    Query returned : false
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.sysman.netclt
    startVersion = 8.0.3.0.0
    endVersion = 8.0.6.0.0
    acceptCompatible = false
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query generalQueries2.2.0.7.0 getOSName
    Query returned : NT_X86
    Calling query w32RegQueries2.2.0.7.0 RegKeyExists
    Key = HKEY_LOCAL_MACHINE
    SubKey = Software\Gradient\DCE
    Query returned : false
    Setting value of PRE_REQUISITE to false
    # The pre-requisite for the component DCE Integration 9.2.0.1.0 has failed.
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query generalQueries2.2.0.7.0 isCurrentPlatformInGroup
    platGroup = Windows
    Query returned : true
    Calling query rgsQueries2.2.0.7.0 isProductInstalled
    Location = C:\oracle\ora92
    InternalName = w32oem10
    MaxVersion = null
    MinVersion = null
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query areasQueries2.2.0.7.0 getComponentInstallTypeName
    Query returned : Complete
    Calling query generalQueries2.2.0.7.0 getOSName
    Query returned : NT_X86
    Calling query WindowsGeneralQueries2.2.0.7.0 getWindowsSystemDirectory
    Query returned : C:\WINDOWS\system32
    Calling query generalQueries2.2.0.7.0 isCurrentPlatformInGroup
    platGroup = WINDOWS
    Query returned : true
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.networking.netclt
    startVersion = 8.1.3.0.0
    endVersion = 8.1.4.0.0
    acceptCompatible = null
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\nt.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\win95.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\win98.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\windows.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\netware.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\os2.rgs
    Query returned : false
    Calling query fileQueries2.2.0.7.0 exists
    filename = C:\oracle\ora92\ORAINST\dos.rgs
    Query returned : false
    Calling query generalQueries2.2.0.7.0 getTotalPhysicalMemory
    Query returned : 1046620
    Setting value of PRE_REQUISITE to true
    Calling query rgsQueries2.2.0.7.0 getAllOracleHomes
    Query returned : C:\oracle\ora92,
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.sysman.w32common
    startVersion = 9.2.0.0.0
    endVersion = 9.2.99.99.99
    acceptCompatible = null
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query rgsQueries2.2.0.7.0 getAllOracleHomes
    Query returned : C:\oracle\ora92,
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.sysman.w32common
    startVersion = 9.2.0.0.0
    endVersion = 9.2.99.99.99
    acceptCompatible = null
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Calling query rgsQueries2.2.0.7.0 getAllOracleHomes
    Query returned : C:\oracle\ora92,
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.sysman.w32common
    startVersion = 9.2.0.0.0
    endVersion = 9.2.99.99.99
    acceptCompatible = null
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Calling query rgsQueries2.2.0.7.0 getAllOracleHomes
    Query returned : C:\oracle\ora92,
    Calling query areasQueries2.2.0.7.0 productInstalled
    location = C:\oracle\ora92
    name = oracle.sysman.w32common
    startVersion = 9.2.0.0.0
    endVersion = 9.2.99.99.99
    acceptCompatible = null
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query areasQueries2.2.0.7.0 getComponentInstallTypeName
    Query returned : Custom
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Calling query SIDQueries1.2.4 getAllOracleHomes

  • Oracle 9i Database for Linux

    Hello,
    I need to be able to test some software changes against an Oracle 9i database running under Linux as this is an environment used by one of my customers.
    I have tried downloading the zip files found at http://www.oracle.com/technology/software/products/oracle9i/htdocs/linuxsoft.html but if I try to open or download any of these files I receive an Error 404 Page Cannot Be Loaded.
    This happens when using IE6 or when using GetRight.
    Are the links to these files still valid? If not, where can I download Oracle 9i Database for Linux?

    I don't find any problems with these files and they are still available.

  • Validate web service username and password against Oracle EBS

    Hi,
    We have a requirement to pass username/password to a SOA webservice that needs to be validated against Oracle E-Business Suite (EBS) login credentials. The EBS users are not integrated with SOA Weblogic server. In EBS, the standard PL/SQL procedure FND_WEB_SEC.VALIDATE_LOGIN(user_name, password) can be used for validation. Appreciate if someone can provide input on validating the username and password as part of web service security header using any OWSM policy.
    Thanks!

    I'm guessing that you are trying to call an EBS API and are using FND_WEB_SEC to test that the user account is valid in FND_USER first before executing the API call. In that instance, you'll likely need to use the Oracle Applications Adapter for EBS if you want to authenticate the user through FND_USER.
    If you've not purchased that adapter, you could use a simple BPEL process, with a regular database adapter to firstly call the FND_WEB_SEC package to authenticate. Pass the response from eBS into a bpel variable, add a bpel switch based on the outcome of that variable either execute the API call or  throw an authentication error if the call failed.
    You can wrap all this up into one web service that then calls this bpel process, taking the username and password as as input parameters.
    Phil

Maybe you are looking for

  • A/R Invoice, Tax@PLD,

    Hello experts! I have two queries. Pls check if a solution can be found. 1. A/R Downpayment Invoice. I have raised a sales order for Rs.10,000/-. I received Down Payment of Rs.1000/-. I create Incoming payment. In the above transactions "No tax" is a

  • ShowInternalMessageDialog vs showMessageDialog

    I originally posted this to the Java Programming list, but in retrospect, this is probably the better place to look for help... please don't be too hard on me if this is really obvious... I'm trying to show a pop-up box with a message to indicate an

  • Good, easy, reliable CAPTCHA for PHP form

    Does anyone know of a reliable (and easy to impliment) CATPCHA for PHP forms? My website is having the hell spammed out of it! There are loads out there, but I need a recommended one - and one that a novice like me can install!

  • Not showing anything!

    So I cannot be the only one this is happening to can I? I use iWeb like every day. And today when I try to open iweb I see nothing! I try the menu at the top and it says iWeb, and I can open the inspector and a few other parts, but I cannot see my we

  • OWM and Spatial

    I am using Oracle 10g and having a problem when merging a workspace into the LIVE. The difference between the two workspaces are that the child has some rows deleted. When i try to merge them i get an error: ERROR at line 1: ORA-00920: invalid relati