Oracle 8i & Intermedia

hi..
i have a 815 instance running on linux
with an extproc listener correctly configured
however when i try the following i get errors
any help would be really appreciated
thanx
pete
[email protected]
SQL> create index doc_index on docs(text)
2 indextype is ctxsys.context;
create index doc_index on docs(text)
ERROR at line 1:
ORA-29855: error occurred in the execution of ODCIINDEXCREATE routine
ORA-20000: ConText error:
DRG-50704: Net8 listener is not running or cannot start external procedures
ORA-28575: unable to open RPC connection to external procedure agent
ORA-06512: at "CTXSYS.DRUE", line 122
ORA-06512: at "CTXSYS.TEXTINDEXMETHODS", line 34
ORA-06512: at line 1

The answer is yes. Oracle Text will support the contains operator nad you can combine this with an other relational selection criteria in the where clause.

Similar Messages

  • How to insert image into table and to in Oracle 9i intermedia?

    Mr Lawrence,
    I want to ask something:
    I use Oracle 9i intermedia
    If i use this script:
    CREATE TABLE images (
    file_name VARCHAR2(100) NOT NULL,
    image ORDSYS.OrdImage
    then
    CREATE OR REPLACE DIRECTORY imgdir AS 'd:/data';
    then
    INSERT INTO images (file_name, image)
    VALUES ('tree', ORDSYS.ORDImage.init('file','imgdir','tree.jpg' ));
    I put tree.jpg in directory d:/data in my hard drive.
    Is my tree.jpg file had already get in to my images table?
    I'm little confuse, because when i check my table with this script:
    select file_name, i.image.getWidth() from images i;
    it's show that my i.image.getWidth() for file_name tree is empty.. that mean my tree.jpg doesn't get in to my table.. am i correct?
    N also i want to ask how to display to screen all of my image from images table?
    Is it posible Oracle 9i intermedia to support display image from table?
    How?
    thanks Mr Lawrence

    -- First step would be to create a directory in oracle and map it to the folder where your image resides.
    create directory image_dir as *'c:\image_dir';*
    Then you would have to use a procedure to insert the image in your table. SO first create a table to hold the image. Note that you have to use a BLOB to insert the image.
    CREATE TABLE test_image
    ID NUMBER,
    image_filename VARCHAR2(50),
    image BLOB
    Now let's write the procedure to insert the image in the table above.
    CREATE OR REPLACE PROCEDURE insert_image_file (p_id NUMBER, p_image_name IN VARCHAR2)
    IS
    src_file BFILE;
    dst_file BLOB;
    lgh_file BINARY_INTEGER;
    BEGIN
    src_file := BFILENAME ('image_DIR', p_image_name);
    -- insert a NULL record to lock
    INSERT INTO temp_image
    (ID, image_name, image
    VALUES (p_id, p_image_name, EMPTY_BLOB ()
    RETURNING image
    INTO dst_file;
    -- lock record
    SELECT image
    INTO dst_file
    FROM temp_image
    WHERE ID = p_id AND image_name = p_image_name
    FOR UPDATE;
    -- open the file
    DBMS_LOB.fileopen (src_file, DBMS_LOB.file_readonly);
    -- determine length
    lgh_file := DBMS_LOB.getlength (src_file);
    -- read the file
    DBMS_LOB.loadfromfile (dst_file, src_file, lgh_file);
    -- update the blob field
    UPDATE temp_image
    SET image = dst_file
    WHERE ID = p_id AND image_name = p_image_name;
    -- close file
    DBMS_LOB.fileclose (src_file);
    END insert_image_file;
    Now execute the procedure to insert the image.
    EXECUTE insert_image_file(1,'test_image.jpg');
    Thanks,
    Aparna

  • Oracle 8i Intermedia Web Cartridge

    After Installing the
    Oracle 8i interMedia Web Agent on OAS 4.0.8.1
    on NT I get
    OWS-20214: The OAS processes can not be started, because the CORBA orb processes can not be started.
    Does anybody knows what to do ?

    This certainly going to be a possible problem. But once over this use metalink note 101361.1 to help.

  • Oracle Text/Intermedia issue

    Hi Friends,
    To implement search capabilities in my oracle database, iam trying to install and configure intermedia. While doing this i came across a few issues:
    1. In Our current setup we wish to use Oracle intermedia. All we need is to be able to create ctxsys.context index and query our tables using “CONTAINS” keyword. Do we need to install Oracle intermedia for this or Oracle Text is enough or these two are tied together?
    2. After intermedia install, I found that 4-5 tables with names DR$indexname are created. Do we need to take into account any memory allocation issues while creating this index(ctxsys.context )?
    3. Also the query takes longer time to retrieve results. What are the considerations to optimize the query? (The table that I am querying has about 5000 records and I created ctxsys.context index for two fields of sizes varchar2(4000) and varchar2(2000) )
    Any help on this wd be highly appreciated.
    Thanks in Anticipation.
    Deeps

    1. In Oracle 9i you need only Oracle Text, no need to install Intermedia
    2. Yes and you can control in which tablespace you want to create this table. You can control this when creating the datastore (Please double check about datastore as I don't remember exactly where to specify the storage clause)
    3. This is difficult to answer unless we have more details like tables, query and execution plan etc. But in general you should analyze the table and indexes as well. Are you using fuzzy, soundex, stem or % search?

  • Oralce 8i와 Oracle 9i 그리고 interMedia

    * 질문한 사람 : atopos
    * 질문 등록일 : 2001-10-11 12:44:43
    * 조회 : 47100
    * 답변 : 7건 (aroma123, atopos)
    -- 질문 내용 --
    안녕하세요.
    interMedia와 Select 절에 대한 aromia님과 rainman 님 답변 잘 들었습니다.
    Oracle 9i로 업그레이드를 하는것이 가장 효율적일것 같다는 생각이 드는데요.
    다운받으려니 3개의 화일을 합쳐 1G 가 넘더라구요. ^^;;;
    그런데 궁금한 것이 있는데 현재 제 시스템에는 win2000 (pro) + Oracle 8i 입니다.
    이 시스템에 Oracle 9i를 인스톨하면 다른 문제는 없을까요?
    Parser 와 resin 등등 여러 s/w가 있어 겨우 환경을 맞추어놓았는데
    Oracle 9i로 업그레이드 되면서 문제가 생긴다면 정말~ 안되거든요.
    Oralce 8i -> Oracle 9i 로 upgrade를 하는 것이 좋은지,
    아니면 Oracle 8i를 uninstall 하고 새로이 Oracle 9i를
    인스톨하는 것이 좋은지 판단이 안섭니다.
    -- 답변 내용 --
    1. aroma123 님의 답변
    오라클 9i를 설치해보았고,
    마찬가지로 Oracle 8i데이타를 migration해보았습니다.
    대부분의 데이타는 import/export와 migration guide를 통해 되겠지만,
    만약, loadjava를 이용하여 insert한 데이타가 있다면, 특히 JServer를 사용하여 EJB를 사용하셨다면, 이는 문제가 있을 겁니다.
    EJB의 경우 오라클은 9iAS의 OC4J로 거의 옮겨가고 있거든요.
    2. atopos 님의 답변
    Rainman1, aroma123 님 의견 고맙습니다. ^_______^
    win2k 용 Oracle9i는 http://technet.oracle.com 에서 다운 받았습니다.
    한국 오라클에는 없더라구요.
    그런데 그 크기에 놀라 (1G가 넘는), 그리고 Oracle8i가 이미 설치되었는데
    upgrade를 해야 할지 아니면 uninstall 후 다시 install 을 해야 할지
    고민했는데 ....
    Oracle8i를 uninstall 한 후 Oracle9i를 install 할까 합니다.
    .... 걱정되네요. ^^;;;
    3. aroma123 님의 답변
    어 벌써 install했나요?
    데이타가 중요하면 가장 간단한 방법을 알려드리죠.
    만약, oracle 9i install실패시나 문제 발생시 oracle 8i의 데이타를 손실할 수있으니까요. 다음의 절차대로 백업을 받아두세요.
    (1) 도스창을 띄워서,
    svrmgrl
    connect internal
    shutdown immediate
    (2) 서비스에서 OracleServiceXXX서비스를 중지시킵니다. 그외에 오라클 관련 서비스들도 중지 시킵니다.
    (3) 작업 관리자에서 oracle.exe가 사라졌는지 확인해보세요.
    (4) 그 다음에 ORACLE_HOME\oradata\아래에 있는 db file들과 admin디렉토리를 백업 받아두시면 됩니다. 그 다음에 oracle 9i를 설치하시고,
    문제가 생겨서 oracle 8i로 rollback하실때, oracle 8i를 지우고 깔았을때,
    (5) oracle 8i를 다시 설치하고, 설치가 끝난 후에
    마찬가지고, svrmgrl -> connect internal -> shutdown immediate
    한 후에 admin디렉토리와 oradata디렉토리를 엎어쓴 후에 startup하면 됩니다.
    4. atopos 님의 답변
    aroma123 님... 아직이랍니다.
    아침부터 Oracle8i를 uninstall 하고, 다시 install 하려고 했는데
    종일 다른 일만 하였네요. ^^;;;
    그리고 오전에 다시 otn.oracle.com 에 잠깐 들렀는데
    며칠전 제가 Oracle9i를 다운받았을때랑 조금 다른듯해서 걱정입니다.
    3개의 파일을 다운받았었는데... 맞겠죠?
    install 을 하기위해 otn에 있는 install guide도 프린트하고...
    위의 설명해 주신 방법을 새겨듣겠습니다. ^^
    주말은 Oracle9i와 함께 할것 같네요.
    주말은 문제가 있어도 도움받기가 힘든데... 걱정이 앞섭니다.
    aromia123님 고맙습니다. ^_________^

  • Oracle 8i & intermedia -- Solved

    hi all
    a lot of people are having problems creating
    text indexes
    heres a workaround
    in your tnsnames.ora for the entry
    extproc_connection_data=
    simply add the domain so it reads
    extproc_connection_data.world=
    now when you try & do this
    create index doc_index on docs(text)
    indextype is ctxsys.context;
    it should work correctly
    apparently oracle docs forgot to correct
    their docs :P
    nb: i dont know about 3rd party filters
    aka inso so they may not work as was reported
    by oracle
    have fun :)
    pete
    [email protected]
    nb: thanx to jmsalvo whos tnsentries triggered this insight
    keep this forum alive people & please post
    workarounds especially for OAS wrksf
    null

    OK - I got it to work but by REMOVING the domain name from the tnsnames.ora entry. I also did some other stuff but it was this final thing that got it working.
    Currently my set up is:
    a) db_domain = <domain_name> in the init file
    (used to be db_domain =
    with no value.
    b) added an SQLNET.ORA entry for NAMES.DEFAULT_DOMAIN = <domain name>
    c) NO domain name on the EXTPROC_CONNECTION_DATA entry in TNSNAMES.ORA although other entries have it.
    I have no explanation for why this should work. I have COntext running on my laptop, which also has a domain name, and the setup
    is different.
    I have no idea what caused the problem (it worked fine for over a month) but someone has been doing admin type stuff with the network, although they claim not to have touched domain name entries.
    null

  • How to make simple GUI application that use oracle 9i intermedia

    Mr Lawrence,
    i want to make a GUI application for storing and retrieving image data, can i build this application using delphi?
    i try using borland delphi 7, but delphi doesnt know object type ORDImage and ORDImageSignature. do u have any reference about building GUI application??
    I want my application can do inserting image into database, searching image by matching it's signature, make image signature for query image, displaying image, etc.
    Or if i can't make this application using delphi, maybe u can give me another application developer beside Delphi.
    Please help Mr Lawrence, i'm stuck (T_T)

    I am not too familiar with Delphi.
    If it does Object-Relational types, that could work.
    Can it interface with PL/SQL procedures? If so, that would be the way to go.
    That is what I have done with .NET applications.
    Larry

  • Intermedia in oracle 10g

    Hi friends,
    thinking about migration from oracle 9i to oracle 10g. We use intermedia indexes on text columns of some tables. Is there any advantage with oracle 10g intermedia? Which are the most significant changes?
    Thanks for answers.

    Try the Oracle Text forum. This one is for image, audio, video
    Text and media have separated and are no longer under the same "interMedia" umbrella.

  • Oracle installation not proceeding further still 0%

    Dear Experts
    i'm install ECC5.0 on Fedoracore 6 with Oracle 9 as DB while i start the oracle installation it seemed to hanged somewhere ,there showing
    "linking pending........"
    coping README......
    pls check the log file which is given below
    Environment variables:
         ORACLE_HOME = /oracle/QTY/920_32
         PATH = /usr/bin:/usr/ccs/bin:/bin:/bin:/usr/bin:/sbin:/usr/sbin:/oracle/QTY/920_32/bin:.:/oracle/QTY:/usr/sap/QTY/SYS/exe/runU:/usr/sap/QTY/SYS/exe/run:/usr/lib/qt-3.3/bin:/usr/kerberos/sbin:/usr/kerberos/bin:/usr/lib/ccache:/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/X11R6/bin:/root/bin
         CLASSPATH =
    Username is: oraqty
    This installation is being performed using response file /tmp/.orainst_rsp.19981.Unable to read the list of homes from the inventory.
    The installer version is 2.2.0.12.0
    Welcome Page***
    This installation is being performed using response file /tmp/.orainst_rsp.19981.
    Setting value of UNIX_GROUP_NAME to dba
    Setting value of FROM_LOCATION to /oracle/stage/920_32/Disk1/stage/products.jar
    Setting value of ORACLE_HOME_NAME to QTY_920_32
    Setting value of ORACLE_HOME to /oracle/QTY/920_32
    Setting value of TOPLEVEL_COMPONENT to oracle.server,9.2.0.1.0,
    Setting value of SHOW_SPLASH_SCREEN to false
    Setting value of SHOW_WELCOME_PAGE to false
    Setting value of SHOW_CUSTOM_TREE_PAGE to true
    Setting value of SHOW_COMPONENT_LOCATIONS_PAGE to false
    Setting value of SHOW_SUMMARY_PAGE to false
    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 false
    Setting value of SHOW_RELEASE_NOTES to false
    Setting value of SHOW_ROOTSH_CONFIRMATION to true
    Setting value of SHOW_END_SESSION_PAGE to true
    Setting value of SHOW_EXIT_CONFIRMATION to true
    Setting value of NEXT_SESSION to false
    Setting value of NEXT_SESSION_ON_FAIL to false
    Setting value of SHOW_DEINSTALL_CONFIRMATION to true
    Setting value of SHOW_DEINSTALL_PROGRESS to true
    Setting value of INVENTORY_LOCATION to /oracle/QTY/oraInventory
    Setting value of UNIX_GROUP_NAME to 
    Setting value of UNIX_GROUP_NAME to dba
    UNIX Group Name Page***
    UnixInstallGroup = UNIX_GROUP_NAME = dba
    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 /oracle/stage/920_32/Disk1/stage/products.jar
    Setting value of ORACLE_HOME to /oracle/QTY/920_32
    Setting value of ORACLE_HOME_NAME to QTY_920_32
    File Locations Page***
    FromLocation = FROM_LOCATION = /oracle/stage/920_32/Disk1/stage/products.jar
    ToLocation = ORACLE_HOME = /oracle/QTY/920_32
    ToName = ORACLE_HOME_NAME = QTY_920_32
    Initializing installer access setup
    Setting value of ORACLE_HOME to /oracle/QTY/920_32
    Setting value of LOCATION_FOR_DISK2 to ../../Disk2
    Setting value of LOCATION_FOR_DISK3 to ../../Disk3
    Setting value of ToplevelComp to oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 46 ][OH:2]
    Setting value of ToplevelComps to [Loracle.sysman.oii.oiii.OiiiCompInstallID;@9ea96
    Setting value of COMPONENT_LANGUAGES to en,
    Setting value of SELECTED_LANGUAGES to [en]
    Setting value of PROD_HOME to /oracle/QTY/oraInventory/../oui
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.oid.oradas
    Setting value of PROD_HOME to /oracle/QTY/920_32/jewt
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_fonts
    Setting value of PROD_HOME to /oracle/QTY/920_32/rts
    Setting value of PROD_HOME to /oracle/QTY/920_32/jpi
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_tools_developer_balicomp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_soap_client
    Setting value of PROD_HOME to /oracle/QTY/920_32/jdk
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.assistants
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.utilities
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_repapi
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.p2k.sqlmod
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_olap_shiphome_driver
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.java.ojsp.jsp_server
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.java.ejb
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.apache.mod8i
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_apache_ejb
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.server
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.ops
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.partitioning
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.cartridges.spatial
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.rdbms.lsm
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.client
    Setting value of PROD_HOME to /oracle/QTY/920_32/olap
    Setting value of PROD_HOME to /oracle/QTY/920_32/dmt
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.infrastructure
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.networking
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod
    Setting value of PROD_HOME to /oracle/QTY/920_32/wf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.agent_ext
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_utilities_util
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_dbv
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_mig
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.p2k.devtools
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_oci_top
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_otrace
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.intermedia.imserver
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.cartridges.locator
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.agent_ext.oapps_agentext
    Setting value of PROD_HOME to /oracle/QTY/920_32/oem_webstage
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_sysman_reporting
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_ldap_rsf_cmp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.ano
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_javavm_cmp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.networking.cman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_prod
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.networking.netsrv
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_hs_odbc
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.networking.names
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_sysman_webserver
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_hs_common
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.interMedia.imclient
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_prod
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.cartridges.context
    Setting value of PROD_HOME to /oracle/QTY/920_32/Apache/Apache
    Setting value of PROD_HOME to /oracle/QTY/920_32/soap
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emcltprod
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_xml
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.agent_ext.frms_agentext
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_expimp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_dbscripts
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_nid
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.p2k
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracel_rdbms_sqlldr
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.apache.ojsp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.agent_ext.emd_agentext
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_prod
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.agent_ext.oecm_agentext
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.agent_ext.ows_agentext
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.oemagent
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.oemagent.agentca
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_prod
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.cartridges.ordsmv
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.cartridges.ordaudio
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.cartridges.ordimg
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.intermedia.imcom
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.cartridges.ordcom
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman/ocm
    Setting value of PROD_HOME to /oracle/QTY/920_32/soap
    Setting value of PROD_HOME to /oracle/QTY/920_32/soap
    Setting value of PROD_HOME to /oracle/QTY/920_32/BC4J
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.interMedia.imclient
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.interMedia.imclient
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.interMedia.imclient
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.interMedia.imclient
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.intermedia.jai
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.rdbms.ovm
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.apache.xdk
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_p2k_xmldevkit
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_demo
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_p2k_xmldevkit
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.ano.sns
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.networking.netmgr.emint
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_xml_parser_cplus
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_xml_xsql
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_xml_parser_plsql
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.java.ojsp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_sqlj
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_xml_classgen_java
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_xml_transview
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_xml_transx
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.xml.xml_ncomp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_xml_classgen_cplus
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.networking.netcltprod
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.networking.netclt
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_options_ano_ssl
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.networking.netmgr
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_xml_xsu
    Setting value of PROD_HOME to /oracle/QTY/920_32/ohw
    Setting value of PROD_HOME to /oracle/QTY/920_32/uix
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/demo/schema
    Setting value of PROD_HOME to /oracle/QTY/920_32/mgw
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_seeddb
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_seeddb
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_seeddb
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_advrep
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.emprod.oemagent.base_oemagent
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.assistants.dbma
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.webdb.modplsql
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_rman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_prod
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_occi
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_prod
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.p2k.proc
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.olap.cv
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_oci
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.rdbms.sqlplus
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_options_ano_ssl_owm
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.assistants.dbca
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.p2k.ott
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.p2k.precomp_common
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_networking_netca
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_expimp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.assistants.acf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_utilities_util_common
    Setting value of PROD_HOME to /oracle/QTY/920_32/help
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_xml_parser_c
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_plsql
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_sqlj_sqljtrans
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.xml.parser.java
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_nlsrtl_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_oracore_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.interMedia.imclient
    Setting value of PROD_HOME to /oracle/QTY/920_32/Apache/Jserv
    Setting value of PROD_HOME to /oracle/QTY/920_32/Apache/Jsdk
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_net_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/ocs4j
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rdbms_aqapi
    Setting value of PROD_HOME to /oracle/QTY/920_32/parser_java
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_sqlj_sqljruntime
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc_oci11
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc_oci12
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc_oci14
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc_thin12
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc_thin14
    Setting value of PROD_HOME to /oracle/QTY/920_32/Apache/Apache
    Setting value of PROD_HOME to /oracle/QTY/920_32/Apache/perl
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_sysman_oembase_ela
    Setting value of PROD_HOME to /oracle/QTY/920_32/jle
    Setting value of PROD_HOME to /oracle/QTY/920_32/dcommon
    Setting value of PROD_HOME to /oracle/QTY/920_32/oem_webstage
    Setting value of PROD_HOME to /oracle/QTY/920_32/dbui
    Setting value of PROD_HOME to /oracle/QTY/920_32/kodiak
    Setting value of PROD_HOME to /oracle/QTY/920_32/help
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.java.javavm.javatools
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/jdk
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_javavm_visiorb
    Setting value of PROD_HOME to /oracle/QTY/920_32/j2ee_core
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/jewt
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_options_olap_api
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_olap_wrksht
    Setting value of PROD_HOME to /oracle/QTY/920_32/regexp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_fonts
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.sysman.prereq
    Setting value of PROD_HOME to /oracle/QTY/920_32/ice
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_platform_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_sysman_sqlserver
    Setting value of PROD_HOME to /oracle/QTY/920_32/sysman
    Setting value of PROD_HOME to /oracle/QTY/920_32/lib
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_plsql_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_precomp_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_slax_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_ssl_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_ldap_rsf_cmp
    Setting value of PROD_HOME to /oracle/QTY/920_32/ewt
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_doc_unixdoc
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_agent_rsf_agent_rsf_cmp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc_thin11
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc_oci_common
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_clntsh_rsf_clntsh_rsf_cmp
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_otrace_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.ops.opsca
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_install_instcommon
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_java_jdbc_jdbc_common
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_rdbms_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_rdbms_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_rsf_dbjava_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.rsf.sqlplus_rsf
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle_tools_share
    Setting value of PROD_HOME to /oracle/QTY/920_32/oracle.options.ops.clustermgr
    Setting value of PROD_HOME to /oracle/QTY/oraInventory/../oui
    Unable to read /oracle/QTY/oraInventory/ContentsXML/comps.xml. Some inventory information may be lost.
    Calling query areasQueries2.2.0.7.0  getInventoryLocation
    Query returned : /oracle/QTY/oraInventory
    Setting value of PROD_HOME to /oracle/QTY/oraInventory\..\jre\1.3.1
    Calling query areasQueries2.2.0.7.0  getInventoryLocation
    Query returned : /oracle/QTY/oraInventory
    Setting value of PROD_HOME to /oracle/QTY/oraInventory\..\jre\1.1.8
    Doing operation for installer access setup
    Available Products Page***
    TopLevelComp = ToplevelComp = oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 46 ][OH:2]
    Setting value of ToplevelComp to oracle.server, 9.2.0.1.0, >0.0.0.0.0, [ 46 ][OH:2]
    Setting value of INSTALL_TYPE to Custom
    Setting value of DEP_MODE to Custom
    Setting value of TLDepModes to Custom,
    Installation Types Page***
    DepMode = DEP_MODE = Custom
    TLDepModes = TLDepModes = Custom,
    The selected install type is "Custom"
    Setting value of DEP_MODE to Custom
    Install type for "Oracle9i Database 9.2.0.1.0 " is "Custom"
    Not all the dependencies for the component Oracle9i Database 9.2.0.1.0  are found. Missing Component oracle.tg 9.2.0.1.0.
    Install type for "Enterprise Edition Options 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i Real Application Clusters 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Partitioning 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Spatial 9.2.0.1.0 " is "Custom"
    Install type for "Legato Networker Single Server 6.1.0.0.0 " is "Custom"
    Install type for "Oracle OLAP 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Data Mining 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Net Services 9.2.0.1.0 " is "Server.Custom"
    Install type for "Oracle Enterprise Manager Products 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Intelligent Agent Extensions 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i 9.2.0.1.0 " is "Custom"
    Not all the dependencies for the component Oracle9i 9.2.0.1.0  are found. Missing Component oracle.rdbms.hs_olefs 9.2.0.1.0.
    Not all the dependencies for the component Oracle9i 9.2.0.1.0  are found. Missing Component oracle.rdbms.hs_olesql 9.2.0.1.0.
    Not all the dependencies for the component Oracle9i 9.2.0.1.0  are found. Missing Component oracle.rdbms.hybrid 9.2.0.1.0.
    Install type for "Oracle Database Utilities 9.2.0.1.0 " is "Custom"
    Install type for "Database Verify Utility 9.2.0.1.0 " is "Custom"
    Install type for "Migration Utility 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i Development Kit 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Trace 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia 9.2.0.1.0 " is "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 "Custom"
    Install type for "Oracle Applications Extensions 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Web Site 9.2.0.1.0 " is "Complete"
    Install type for "Reporting Framework 9.2.0.1.0 " is "Complete"
    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 Advanced Security 9.2.0.1.0 " is "Custom"
    Not all the dependencies for the component Oracle Advanced Security 9.2.0.1.0  are found. Missing Component oracle.options.ano.dce 9.2.0.1.0.
    Install type for "Oracle JVM 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Connection Manager 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i Syndication Server 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Net Listener 9.2.0.1.0 " is "Custom"
    Install type for "Generic Connectivity Using ODBC 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Names 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Webserver Integration 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Ultra Search Middle-Tier 9.2.0.1.0 " is "Typical"
    Install type for "Oracle Internet Directory Client 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Oracle JDBC Thin Driver for JDK 1.2 9.2.0.1.0 "  to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Generic Connectivity Common Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Client Option 9.2.0.1.0 " is "Custom"
    Install type for "iSQL*Plus 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Text 9.2.0.1.0 " is "Custom"
    Install type for "Oracle HTTP Server 9.2.0.1.0 " is "Custom"
    Install type for "Oracle SOAP for JServ 2.0.0.0.0a " is "Custom"
    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 "XML 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "XML Parser for Java 9.2.0.1.0 "  to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle Forms Extensions 9.2.0.1.0 " is "Custom"
    Install type for "Export/Import 9.2.0.1.0 " is "Custom"
    Install type for "Database SQL Scripts 9.2.0.1.0 " is "Custom"
    Install type for "New Database ID 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Tuning Pack 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Programmer 9.2.0.1.0 " is "Custom"
    Install type for "SQL*Loader 9.2.0.1.0 " is "Custom"
    Install type for "Apache Configuration for Oracle Java Server Pages 1.1.2.3.0 " is "Custom"
    Install type for "Oracle EMD Agent Extensions 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Dynamic Services Server 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Ultra Search Common Files 9.2.0.1.0 " is "Typical"
    Install type for "Oracle eBusiness Management Extensions 9.2.0.1.0 " is "Custom"
    Install type for "Oracle HTTP Server Extensions 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Intelligent Agent 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Management Pack for Oracle Standard Edition 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Intelligent Agent Config Tool 9.2.0.1.0 " is "Custom"
    Install type for "PL/SQL Embedded Gateway 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Annotator 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Management Pack for Oracle Applications 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Change Management Pack 9.2.0.1.0 " is "Complete"
    Install type for "Oracle interMedia Video 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Audio 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Image 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Common Files 9.2.0.1.0 " is "Custom"
    Install type for "Data Management Services Common Files 9.2.0.1.0 " is "Custom"
    Install type for "Change Management Common Files 9.2.0.1.0 " is "Complete"
    Install type for "Oracle SOAP Server 2.0.0.0.0a " is "Custom"
    Install type for "Oracle SOAP Client 2.0.0.0.0a " is "Custom"
    Install type for "BC4J Runtime for Database 9.0.2.692.1 " is "Custom"
    Install type for "Oracle interMedia Web Client 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Client Demos 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Java Media Framework Client 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Client Compatibility Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Java Advanced Imaging 9.2.0.1.0 " is "Custom"
    Install type for "Database Workspace Manager 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Client 9.2.0.1.0 " is "Custom"
    Install type for "Apache Configuration for Oracle XML Developer's Kit 9.2.0.1.0 " is "Custom"
    Install type for "Oracle XML Developer's Kit 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manager Integrated Applications 9.2.0.1.0 " is "Complete"
    Not all the dependencies for the component Enterprise Manager Integrated Applications 9.2.0.1.0  are found. Missing Component oracle.sysman.wf.client 9.2.0.1.0.
    Install type for "Enterprise Manager Console 9.2.0.1.0 " is "Complete"
    Install type for "Enterprise Manager Database Applications 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Database Demos 9.2.0.1.0 " is "Custom"
    Install type for "Oracle XML Runtime Components 9.2.0.1.0 " is "Custom"
    Install type for "Authentication and Encryption 9.2.0.1.0 " is "Custom"
    Not all the dependencies for the component Authentication and Encryption 9.2.0.1.0  are found. Missing Component oracle.options.ano.sns.hybrid 9.2.0.1.0.
    Install type for "Enterprise Manager Common Files 9.2.0.1.0 " is "Complete"
    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 "XSQL Servlet 9.2.0.1.0 " is "Custom"
    Install type for "XML Parser for PL/SQL 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Java Server Pages 1.1.3.1.0 " is "Custom"
         Conflict while setting install type of "Oracle JDBC/OCI Driver for JDK 1.1 9.2.0.1.0 "  to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Oracle SQLJ 9.2.0.1.0 " is "Custom"
    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 "Custom"
    Install type for "Oracle Net 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)"
         Conflict while setting install type of "Oracle Net Manager 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 Net Configuration Assistant 9.2.0.1.0 "  to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "Secure Socket Layer 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Net Manager 9.2.0.1.0 " is "Custom"
    Install type for "Oracle XML SQL Utility 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Help for the  Web 1.0.7.0.0 " is "Complete"
    Install type for "Oracle UIX 2.0.21.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 "Oracle Internet Directory Tools 9.2.0.1.0 " is "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 "Custom"
    Install type for "Oracle Starter Database 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Complete OLTP Starter Database 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Complete DSS Starter Database 9.2.0.1.0 " is "Custom"
    Install type for "Advanced Replication 9.2.0.1.0 " is "Custom"
    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)"
    Not all the dependencies for the component Oracle Intelligent Agent Base Component Files 9.2.0.1.0  are found. Missing Component oracle.rsf.hybrid 9.2.0.1.0.
    Install type for "Database Upgrade Assistant 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Enterprise Manager Base Classes 9.2.0.1.0 "  to "Custom (Custom)". Install type already set to "Complete (Complete)". Seting it to "Custom (Custom)"
    Install type for "Oracle Mod PL/SQL Gateway 3.0.9.8.3b " is "Typical"
    Install type for "Recovery Manager 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i Real Application Clusters Guard 9.2.0.1.0 " is "Custom"
    Install type for "Oracle C++ Call Interface 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Login Assistant 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Label Security 9.2.0.1.0 " is "Custom"
    Install type for "Pro*C/C++ 9.2.0.1.0 " is "Custom"
    Install type for "Oracle OLAP CWM Lite 9.2.0.1.0 " is "Custom"
    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 Call Interface (OCI) 9.2.0.1.0 " is "Custom"
    Install type for "SQL*Plus 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Wallet Manager 9.2.0.1.0 " is "Custom"
    Install type for "Database Configuration Assistant 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)"
    Install type for "Object Type Translator 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC/OCI Interfaces 9.2.0.1.0 " is "Custom"
    Install type for "Precompiler Common Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Net Configuration Assistant 9.2.0.1.0 " is "Custom"
    Install type for "Character Set Migration Utility 9.2.0.1.0 " is "Custom"
    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 "Utilities Common Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Help For Java 3.2.13.0.0 " is "Custom"
         Conflict while setting install type of "Bali Share 1.1.17.0.0 "  to "Custom (Custom)". Install type already set to "Typical (Typical)". Seting it to "Custom (Custom)"
    Install type for "PL/SQL 9.2.0.1.0 " is "Custom"
    Install type for "SQLJ Translator 9.2.0.1.0 " is "Custom"
    Install type for "XML Parser for Java 9.2.0.1.0 " is "Custom"
    Install type for "Required Support Files 9.2.0.1.0 " is "Custom"
    Not all the dependencies for the component Required Support Files 9.2.0.1.0  are found. Missing Component oracle.rsf.hybrid 9.2.0.1.0.
    Install type for "Oracle9i Globalization Support 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Core Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle interMedia Java Client 9.2.0.1.0 " is "Custom"
    Install type for "Apache JServ 1.1.0.0.0g " is "Custom"
    Install type for "JSDK 2.0.0.0.0d " is "Custom"
    Install type for "Oracle Net Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Caching Service for Java 2.1.0.0.0a " is "Custom"
    Install type for "Advanced Queueing (AQ) API 9.2.0.1.0 " is "Custom"
    Install type for "XML Parser 9.0.2.0.0 " is "Typical"
    Install type for "SQLJ Runtime 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.1 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.2 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC/OCI Driver for JDK 1.4 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC Thin Driver for JDK 1.2 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC Thin Driver for JDK 1.4 9.2.0.1.0 " is "Custom"
    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 "Custom"
    Install type for "Enterprise Manager Minimal Integration 9.2.0.1.0 " is "Custom"
    Install type for "Oracle Java Layout Engine 2.0.1.0.0 " is "Complete"
    Install type for "Documentaion Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Enterprise Manage Website Translated Files 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Database User Interface 2.2.11.0.0 " is "Custom"
    Install type for "Oracle Code Editor 1.2.1.0.0A " is "Custom"
    Install type for "Oracle Help For Java 4.1.13.0.0 " is "Custom"
    Install type for "Enterprise Manager Paging and OMS Common Files 9.2.0.1.0 " is "Complete"
    Install type for "Oracle Java Tools 9.2.0.1.0 " is "Custom"
         Conflict while setting install type of "Java Runtime Environment 1.1.8.1.0 "  to "Custom (Custom)". Install type already set to "Maximum (Complete)". Seting it to "Custom (Custom)"
    Install type for "Oracle Directory Manager 9.2.0.1.0 " is "Complete"
    Install type for "Sun JDK 1.3.1.0.1a " is "Custom"
    Install type for "Visigenics ORB 3.4.0.0.0 " is "Custom"
    Install type for "Java J2EE Core 9.0.2.0.0 " is "Typical"
    Install type for "Oracle Internet Directory Client Common Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JFC Extended Windowing Toolkit 4.1.10.0.0 " is "Custom"
    Install type for "Oracle OLAP API 9.2.0.1.0 " is "Custom"
    Install type for "Oracle OLAP Worksheet 9.2.0.1.0 " is "Custom"
    Install type for "regexp 2.0.21.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 "Enterprise Manager Base Classes 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 "Oracle Ice Browser 5.06.8.0.0 " is "Custom"
    Install type for "Platform Required Support Files 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 "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 "Sun JDK extensions 9.2.0.1.0 " is "Custom"
    Install type for "PL/SQL 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 "Parser Generator Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "SSL 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 "Oracle Extended Windowing Toolkit 3.4.13.0.0 " is "Custom"
    Install type for "Oracle9i for UNIX Documentation 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 JDBC Thin Driver for JDK 1.1 9.2.0.1.0 " is "Custom"
    Install type for "Oracle JDBC Development Drivers 9.2.0.1.0 " is "Custom"
    Install type for "JDBC/OCI Common 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 Trace Required Support Files 9.2.0.1.0 " is "Custom"
    Install type for "Oracle9i Real Application Clusters Management 9.2.0.1.0 " is "Custom"
    Install type for "Installation Common Files 9.2.0.1.0 " is "Custom"
    Install type for "JDBC Common 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 "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 "SQL*Plus 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 "Oracle Universal Installer 2.2.0.12.0 " is "Custom"
    Install type for "Java Runtime Environment 1.3.1.0.0 " is "Custom"
    Install type for "Java Runtime Environment 1.1.8.1.0 " is "Custom"
    Calling query areasQueries2.2.0.7.0  getComponentInstallTypeName
    Query returned : Custom
    Calling query generalQueries2.2.0.7.0  getOSName
    Query returned : Linux
    Calling query generalQueries2.2.0.7.0  getOSVer
    Query returned : 2.6.18-1.2798.fc6xen
    Calling query generalQueries2.2.0.7.0  isCurrentPlatformInGroup
    platGroup = WINDOWS
    Query returned : false
    Calling query areasQueries2.2.0.7.0  productInstalled
    location = /oracle/QTY/920_32
    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 = /oracle/QTY/920_32
    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 = /oracle/QTY/920_32
    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 = /oracle/QTY/920_32
    name = oracle.install.instcommon
    startVersion = 8.1.3.0.0
    endVersion = 9.0.0.0.0
    acceptCompatible = null
    Query returned : false
    Calling query areasQueries2.2.0.7.0  productInstalled
    location = /oracle/QTY/920_32
    name = oracle.install.instcommon
    startVersion = 8.1.3.0.0
    endVersion = 9.0.0.0.0
    acceptCompatible = null
    Query returned : false
    Calling query rgsQueries2.2.0.7.0  isProductInstalled
    Location = /oracle/QTY/920_32
    InternalName = ocommon
    MaxVersion = 8.0.7
    MinVersion = 7.3.2
    Query returned : false
    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 DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms,9.2.0.1.0,oracle.options,9.2.0.1.0,oracle.networking,9.2.0.1.0,oracle.p2k.devtools,9.2.0.1.0,oracle.java.jdbc,9.2.0.1.0,oracle.doc.unixdoc,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.cartridges.spatial,9.2.0.1.0,oracle.options.partitioning,9.2.0.1.0,
    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 DEPENDENCY_LIST to oracle.cartridges.spatial,9.2.0.1.0,oracle.options.partitioning,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.cartridges.spatial,9.2.0.1.0,oracle.options.partitioning,9.2.0.1.0,
    Calling query generalQueries2.2.0.7.0  isCurrentPlatformInGroup
    platGroup = UNIX
    Query returned : true
    Calling query areasQueries2.2.0.7.0  getGroupLocation
    groupName = lsminst
    Query returned : /oracle/stage/920_32/Disk1/stage/Components/oracle.rdbms.lsm/6.1.0.0.0/1/DataFiles/Expanded/lsminst/rdbms/install/lgto
    Calling query SpawnQueries1.1.1  Spawn
    command = /oracle/stage/920_32/Disk1/lgto/lsminst
    Query returned : 0
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.cartridges.spatial,9.2.0.1.0,oracle.options.partitioning,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.cartridges.spatial,9.2.0.1.0,oracle.options.partitioning,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.cartridges.spatial,9.2.0.1.0,oracle.options.partitioning,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.cartridges.spatial,9.2.0.1.0,oracle.options.partitioning,9.2.0.1.0,
    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.
    Setting value of PRE_REQUISITE to true
    Calling query generalQueries2.2.0.7.0  isCurrentPlatformInGroup
    platGroup = UNIX
    Query returned : true
    Calling query rgsQueries2.2.0.7.0  isProductInstalled
    Location = /oracle/QTY/920_32
    InternalName = ocommon
    MaxVersion = 8.0.7
    MinVersion = 7.3.2
    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 DEPENDENCY_LIST to oracle.networking.netsrv,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.networking.netsrv,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.networking.netsrv,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    Calling query generalQueries2.2.0.7.0  isCurrentPlatformInGroup
    platGroup = Windows
    Query returned : false
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.emprod.oemagent,9.2.0.1.0,oracle.sysman.website,9.2.0.1.0,oracle.sysman.oms,9.2.0.1.0,oracle.sysman.client,9.2.0.1.0,oracle.sysman.pack.change,9.2.0.1.0,oracle.sysman.pack.diag,9.2.0.1.0,oracle.sysman.pack.tuning,9.2.0.1.0,oracle.sysman.pack.apps,9.2.0.1.0,
    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 DEPENDENCY_LIST to oracle.rdbms.occi,9.2.0.1.0,oracle.rdbms.oci,9.2.0.1.0,oracle.p2k,9.2.0.1.0,oracle.p2k.xmldevkit,9.2.0.1.0,
    Setting value of DEPENDENCY_LIST to oracle.rdbms.occi,9.2.0.1.0,oracle.rdbms.oci,9.2.0.1.0,oracle.p2k,9.2.0.1.0,oracle.p2k.xmldevkit,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms.occi,9.2.0.1.0,oracle.rdbms.oci,9.2.0.1.0,oracle.p2k,9.2.0.1.0,oracle.p2k.xmldevkit,9.2.0.1.0,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.rdbms.occi,9.2.0.1.0,oracle.rdbms.oci,9.2.0.1.0,oracle.p2k,9.2.0.1.0,oracle.p2k.xmldevkit,9.2.0.1.0,
    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 DEPENDENCY_LIST to oracle.emprod.agent_ext.ows_agentext,9.2.0.1.0,oracle.apache.xdk,9.2.0.1.0,oracle.emprod.agent_ext.oecm_agentext,9.2.0.1.0,oracle.bc4j,9.0.2.692.1,oracle.webdb.modplsql,3.0.9.8.3b,oracle.webdb.modplsql,3.0.9.8.3b,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.emprod.agent_ext.ows_agentext,9.2.0.1.0,oracle.apache.xdk,9.2.0.1.0,oracle.emprod.agent_ext.oecm_agentext,9.2.0.1.0,oracle.bc4j,9.0.2.692.1,oracle.webdb.modplsql,3.0.9.8.3b,oracle.webdb.modplsql,3.0.9.8.3b,
    Setting value of DEPENDENCY_LIST to oracle.emprod.agent_ext.ows_agentext,9.2.0.1.0,oracle.apache.xdk,9.2.0.1.0,oracle.emprod.agent_ext.oecm_agentext,9.2.0.1.0,oracle.bc4j,9.0.2.692.1,oracle.webdb.modplsql,3.0.9.8.3b,oracle.webdb.modplsql,3.0.9.8.3b,
    Setting value of PRE_REQUISITE to true
    Setting value of DEPENDENCY_LIST to oracle.emprod.agent_ext.ows_agentext,9.2.0.1.0,oracle.apache.xdk,9.2.0.1.0,oracle.emprod.agent_ext.oecm_agentext,9.2.0.1.0,oracle.bc4j,9.0.2.692.1,oracle.webdb.modplsql,3.0.9.8.3b,oracle.webdb.modplsql,3.0.9.8.3b,
    Setting value of DEPENDENCY_LIST to oracle.emprod.agent_ext.ows_agentext,9.2.0.1.0,oracle.apache.xdk,9.2.0.1.0,oracle.emprod.agent_ext.oecm_agentext,9.2.0.1.0,oracle.bc4j,9.0.2.692.1,oracle.webdb.modplsql,3.0.9.8.3b,oracle.webdb.modplsql,3.0.9.8.3b,
    Setting value of DEPENDENCY_LIST to oracle.emprod.agent_ext.ows_agentext,9.2.0.1.0,oracle.apache.xdk,9.2.0.1.0,oracle.emprod.agent_ext.oecm_agentext,9.2.0.1.0,oracle.bc4j,9.0.2.692.1,oracle.webdb.modplsql,3.0.9.8.3b,oracle.webdb.modplsql,3.0.9.8.3b,
    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 : Linux
    Calling query generalQueries2.2.0.7.0  isCurrentPlatformInGroup
    platGroup = WINDOWS
    Query returned : false
    Calling query areasQueries2.2.0.7.0  productInstalled
    location = /oracle/QTY/920_32
    name = oracle.install.instcommon
    startVersion = 8.1.3.0.0
    endVersion = 8.1.4.0.0
    acceptCompatible = null
    Query returned : false
    Calling query rgsQueries2.2.0.7.0  isProductInstalled
    Location = /oracle/QTY/920_32
    InternalName = ocommon
    MaxVersion = 8.0.7
    MinVersion = 7.3.2
    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
    Calling query SIDQueries1.2.4  getAllOracleHomes
    Query returned : null
    Using the default value for query
    Calling query generalQueries2.2.0.7.0  isCurrentPlatformInGroup
    platGroup = UNIX
    Query returned : true
    Calling query RunningProcessQuery1.4.4  runningProcessExists
    fileNames =
    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
    Calling query rgsQueries2.2.0.7.0  isProductInstalled

    Would you mind
    1) do not duplicate questions:
    Re: oracle installation not proceeding further still 0%
    2) As mentioned on the other thread, Fedora Core 6 is NOT supported by SAP. It is not even supported by Oracle. Please, use a <b>supported </b> OS/DB combination to install ECC 5.0

  • Oracle database 9.2.0.8 patchset upgrade from 9.2.0.3

    Hi,
    i have a situation where i upgraded the Oracle software with database as per metalink documentation from 9.2.03 to patchset 9.2.0.8 (Oracle9i Patch Set Release 2 (9.2.0.8) Patch Set 7 for HP-UX PA-RISC (64-Bit) ) (README for 4547809 )
    but i could see the $ORACLE_HOME/bin binaries are still at 9.2.0.3, and so v$version dba_registry pointing to same.
    i have pasted few lines of patch installation log from Inventory
    <------snip----------->
    Oracle Universal Installer version is 10.1.0.5.0
    Setting variable 'PREREQ_CONFIG_LOCATION' to ''. Received the value from variable association.
    *** Welcome Page***
    Initializing install inventory
    Setting up install inventory
    *** Specify File Locations Page***
    Setting the 'SourceLocation ( FROM_LOCATION )' property to '/u01/h3a/h3a_ora2/9208/Disk1/stage/products.xml'. Received the value from the UI p
    age.
    Setting the 'OracleHome ( ORACLE_HOME )' property to '/h3a/h3a_ora2/oracle/product/9.2.0'. Received the value from the UI page.
    Setting the 'OracleHomeName ( ORACLE_HOME_NAME )' property to 'OUIHome3'. Received the value from the UI page.
    Warning:*** Alert: You have specified a non-empty directory to install this product. It is recommended to specify either an empty or a non-exi
    stent directory. You may, however, choose to ignore this message if the directory contains Operating System generated files or subdirectories
    like lost+found.
    Do you want to proceed with installation in this Oracle Home? ***
    User Selected: Yes/OK
    Initializing OUI access setup
    Setting variable 'ORACLE_HOME' to '/h3a/h3a_ora2/oracle/product/9.2.0'. Received the value from the UI page.
    Setting the PROD_HOME variable of 'oracle.java.jdbc.thin14_9.2.0.1.0' to '/h3a/h3a_ora2/oracle/product/9.2.0/oracle_java_jdbc_thin14'. Receive
    d the value from the variable calculation.
    Setting the PROD_HOME variable of 'oracle.swd.jre_1.4.2.0.0' to '/h3a/h3a_ora2/oracle/product/9.2.0/jre/1.4.2'. Received the value from the va
    riable calculation.
    Setting the PROD_HOME variable of 'oracle.swd.opatch_10.1.0.5.0' to '/h3a/h3a_ora2/oracle/product/9.2.0/OPatch'. Received the value from the v
    ariable calculation.
    Setting the PROD_HOME variable of 'oracle.swd.oui_10.1.0.5.0' to '/h3a/h3a_ora2/oracle/product/9.2.0/oui'. Received the value from the variabl
    e calculation.
    Setting the PROD_HOME variable of 'oracle.swd.oui.core_10.1.0.5.0' to '/h3a/h3a_ora2/oracle/product/9.2.0/oui'. Received the value from the va
    riable calculation.
    Unable to read /h3a/h3a_ora2/oracle/product/9.2.0/inventory/ContentsXML/comps.xml. Some inventory information may be lost.
    # The patch iSQL*Plus Patch 9.2.0.8.0 has not been selected for installation because the base component is neither installed nor in the stagi
    ng area.
    # The patch oracle.apache.isqlplus 9.2.0.8.0, which is part of patch set Oracle 9iR2 Patch Set 9.2.0.8.0 , has not been selected for installat
    ion.
    # The patch Oracle Text Patch 9.2.0.8.0 has not been selected for installation because the base component is neither installed nor in the sta
    ging area.
    # The patch oracle.cartridges.context 9.2.0.8.0, which is part of patch set Oracle 9iR2 Patch Set 9.2.0.8.0 , has not been selected for instal
    lation.
    # The patch Oracle interMedia Locator Patch 9.2.0.8.0 has not been selected for installation because the base component is neither installed
    nor in the staging area.
    # The patch oracle.cartridges.locator 9.2.0.8.0, which is part of patch set Oracle 9iR2 Patch Set 9.2.0.8.0 , has not been selected for instal
    lation.
    # The patch Oracle JDBC Development Drivers Patch 9.2.0.8.0 has not been selected for installation because the base component is neither inst
    alled nor in the staging area.
    # The patch oracle.java.jdbc.jdbc_dev 9.2.0.8.0, which is part of patch set Oracle 9iR2 Patch Set 9.2.0.8.0 , has not been selected for instal
    lation.
    # The patch JDBC/OCI Common Files Patch 9.2.0.8.0 has not been selected for installation because the base component is neither installed nor
    in the staging area.
    # The patch oracle.java.jdbc.oci_common 9.2.0.8.0, which is part of patch set Oracle 9iR2 Patch Set 9.2.0.8.0 , has not been selected for inst
    allation.
    Performing operation for OUI access setup
    CRS clusterware not found. Defaulting to vendor clusterware.
    Vendor clusterware is not detected.
    This is not a cluster system.
    Node selection page will not be shown.
    Setting variable 'CLUSTER_NODES' to ''. Received the value from a code block.
    *** Select a Product to Install Page***
    Setting the 'TopLevelComp ( ToplevelComp )' property to 'oracle.server, 9.2.0.8.0, >9.2.0.8.0, [ ][OH:2]'. Received the value from the default
    settings.
    *** Select Installation Type Page***
    Setting the 'InstallType ( DEP_MODE )' property to 'Custom'. Received the value from the default settings.
    Setting the 'TopLevelInstallType ( TLDepModes )' property to 'Custom,'. Received the value from the default settings.
    No prerequisite checks specified for this installation.
    # The patch oracle.options.ano.nis 9.2.0.8.0, which is part of patch set Oracle 9iR2 Patch Set 9.2.0.8.0 , has not been selected for installation.
    # The patch could not be found in the staging area.
    # The patch Authentication and Encryption Patch 9.2.0.8.0 has not been selected for installation because the base component is neither instal
    led nor in the staging area.
    # The patch oracle.options.ano.sns 9.2.0.8.0, which is part of patch set Oracle 9iR2 Patch Set 9.2.0.8.0 , has not been selected for installat
    ion.
    # The patch Oracle Wallet Manager Patch 9.2.0.8.0 has not been selected for installation because the base component is neither installed nor
    in the staging area.
    # The patch oracle.options.ano.ssl.owm 9.2.0.8.0, which is part of patch set Oracle 9iR2 Patch Set 9.2.0.8.0 , has not been selected for insta
    llation.
    # The patch Oracle interMedia Client Compatibility Files Patch 9.2.0.8.0 has not been selected for installation because the base component is
    neither installed nor in the staging area.
    # The patch oracle.options.intermedia.imclient.imclicompat 9.2.0.8.0, which is part of patch set Oracle 9iR2 Patch Set 9.2.0.8.0 , has not bee
    n selected for installation.
    # The patch Oracle interMedia Common Files Patch 9.2.0.8.0 has not been selected for installation because the base component is neither insta
    lled nor in the staging area.
    # The patch oracle.options.intermedia.imcom 9.2.0.8.0, which is part of patch set Oracle 9iR2 Patch Set 9.2.0.8.0 , has not been selected for
    installation.
    # The patch Oracle interMedia Java Advanced Imaging Patch 9.2.0.8.0 has not been selected for installation because the base component is neit
    her installed nor in the staging area.
    <--------------->
    OPatch lsinventory for upgraded ORACLE_HOME returns
    PRODUCT NAME VERSION
    ============ =======
    Installer SDK Component 10.1.0.5.0
    Oracle 9iR2 Patch Set 9.2.0.8.0
    Oracle Universal Installer 10.1.0.5.0
    There are 3 components installed.
    There is no Interim Patch
    any idea what went wrong here?
    regards
    Deepak.

    Setting the 'InstallType ( DEP_MODE )' property to 'Custom'. Received the value from the default settings.Any reason for going in for custom installation?

  • InterMedia Text with USER_DATASTORE and ORA-03113

    Hi,
    I have problems using Oracle's InterMedia Text-index with a
    USER_DATASTORE. I'm using Oracle 8.1.7 on Windows NT 4.0.
    What I try to do is to create a context-index on multiple columns
    of multiple tables. I created a table containing the original
    tablenames and primary keys plus a char(1)-column to index, a
    user_datastore, a procedure in a user-schema, a
    wrapping-procedure in ctxsys' schema and finally the index. All
    works fine so far but I get an ORA-03113 "end-of-file on
    communication channel" error when querying the table with
    contains. The procedure itself works.
    Here's what I tried in detail:
    I created a table "alldocs" containing the tablename and
    primary-key-value of each line of each table plus a dummy-column
    for the index:
    create table alldocs(
    table varchar2(30) not null,
    id number not null,
    data char(1),
    primary key(tabelle, id)
    I filled this table:
    insert into alldocs (select 'MYDOCS', id, 'a' from mydocs);
    insert into alldocs (select 'OTHERDOCS', id, 'b' from otherdocs);
    The user's procedure - only dummy for testing - is:
    create procedure test.GetAllDocsData(row IN ROWID, data IN OUT
    NOCOPY CLOB) IS
         tabname varchar2(30);
         myid     number;
         tmpclob clob;
    begin
         dbms_lob.createtemporary(tmpclob, TRUE);
         dbms_lob.writeappend(tmpclob, 34, 'Ein Text mit ca. 20
    Zeichen Ldnge.');
         data := tmpclob;
    end;
    In ctxsys' schema I defined the following procedure and the
    datastore:
    create or replace procedure sysGetAllDocsData(rid in rowid, tlob
    in out clob) is
    begin
    test.GetAllDocsData(rid, tlob);
    end sysGetAllDocsData;
    grant execute on sysGetAllDocsData to test;
    call ctx_ddl.create_preference('MyUserDS', 'user_datastore');
    call ctx_ddl.set_attribute('MyUserDS', 'procedure',
    'sysGetAllDocsData');
    call ctx_ddl.set_attribute('MyUserDS', 'output_type', 'CLOB');
    Finally I defined the index:
    create index test.alldocs_ctx on test.alldocs(data)
         indextype is ctxsys.context
         parameters ('DATASTORE CTXSYS.MyUserDS FILTER
    CTXSYS.INSO_FILTER LEXER BASIC_LEXER');
    This all works without errors. But when querying like this:
    select * from test.alldocs where contains('data', 'Text')>0
    the answer is
    ORA-03113: end-of-file on communication channel
    I hope someone can help.
    Greetings
    Ralf

    Hi Ralf,
    please define first your own preferences like this:
    exec CTX_DDL.drop_preference('MY_LEXER');
    exec CTX_DDL.create_preference('MY_LEXER','BASIC_LEXER');
    exec CTX_DDL.set_attribute('MY_LEXER','ALTERNATE_SPELLING',
    'GERMAN');
    exec CTX_DDL.set_attribute('MY_LEXER','BASE_LETTER','YES');
    exec CTX_DDL.set_attribute('MY_LEXER','MIXED_CASE', 'NO');
    exec CTX_DDL.set_attribute('MY_LEXER','INDEX_THEMES','NO');
    exec CTX_DDL.set_attribute('MY_LEXER','INDEX_TEXT', 'YES');
    exec CTX_DDL.set_attribute('MY_LEXER','COMPOSITE', 'GERMAN');
    exec ctx_ddl.Drop_Preference ('MY_FILTER');
    exec ctx_ddl.Create_Preference ('MY_FILTER','NULL_FILTER');
    exec ctx_ddl.drop_section_group ('MY_SECTION');
    exec ctx_ddl.create_section_group
    ('MY_SECTION','NULL_SECTION_GROUP');
    and then create your index with this preferences. You only need
    an INSO filter if you want to index pdf,word,...
    create index test.alldocs_ctx on test.alldocs(data)
         indextype is ctxsys.context
         parameters ('DATASTORE CTXSYS.MyUserDS FILTER
    CTXSYS.INSO_FILTER LEXER BASIC_LEXER');create index test.alldocs_ctx on test.alldocs(data)
         indextype is ctxsys.context
         parameters ('
    DATASTORE CTXSYS.MyUserDS
    lexer MY_LEXER
    filter MY_FILTER
    section group MY_SECTION');
    Then see in the token table what tokens are in the index:
    select token_text from dr$alldocs_ctx$i;
    If you got also an ORA-3113 see in alert.log if there is a trace
    referenced with this error and have a look in this file to find a
    better error message.
    Good luck.
    Thomas

  • Silent Install of Oracle Patch 10.1.0.2.0

    I'm trying to do a silent installation of the 9.2.0.5_PATCH_SET_FOR_ORACLE_DATABASE_SERVER. I want to install the Oracle 10.1.0.2.0 patch first. Below is my response file. When I try to run the installation silently the Language Selector appears. What am I missing here?
    Any Help is appreciated.
    ## Copyright (c) 1999, 2004 Oracle. All rights reserved. ##
    ## Specify values for the variables listed below to customize ##
    ## your installation. ##
    ## Each variable is associated with a comment. The comment ##
    ## identifies the variable type. ##
    ## Please specify the values in the following format: ##
    ## Type Example ##
    ## String "Sample Value" ##
    ## Boolean True or False ##
    ## Number 1000 ##
    ## StringList {"String value 1","String Value 2"} ##
    ## The values that are given as <Value Required> need to be ##
    ## specified for a silent installation to be successful. ##
    ## This response file is generated by Oracle Software ##
    ## Packager. ##
    RESPONSEFILE_VERSION=2.2.1.0.0
    #Name : UNIX_GROUP_NAME
    #Datatype : String
    #Description: Unix group to be set for the inventory directory. Valid only in Unix platforms.
    #Example: UNIX_GROUP_NAME = "install"
    UNIX_GROUP_NAME=" "
    #Name : FROM_LOCATION
    #Datatype : String
    #Description: Complete path to the products.xml.
    #Example: FROM_LOCATION = "..\stage\products.xml"
    FROM_LOCATION="Y:\Software\Oracle_9i_Patches\9.2.0.5_PATCH_SET_FOR_ORACLE_DATABASE_SERVER\Disk1\stage\products.xml"
    #Name : FROM_LOCATION_CD_LABEL
    #Datatype : String
    #Description: This variable should only be used in multi-CD installations. It includes the label of the compact disk where the file "products.xml" exists. The label can be found in the file "disk.label" in the same directory as products.xml.
    #Example: FROM_LOCATION_CD_LABEL = "CD Label"
    FROM_LOCATION_CD_LABEL=<Value Unspecified>
    #Name : ORACLE_HOME
    #Datatype : String
    #Description: Complete path of the Oracle Home.
    #Example: ORACLE_HOME = "C:\OHOME1"
    ORACLE_HOME="C:\Oracle\Ora92"
    #Name : ORACLE_HOME_NAME
    #Datatype : String
    #Description: Oracle Home Name. Used in creating folders and services.
    #Example: ORACLE_HOME_NAME = "OHOME1"
    ORACLE_HOME_NAME="OraHome92"
    #Name : TOPLEVEL_COMPONENT
    #Datatype : StringList
    #Description: The top level component to be installed in the current session.
    #Example: TOPLEVEL_COMPONENT = {"oracle.swd.oui","10.1.0.2.0"}
    TOPLEVEL_COMPONENT={"oracle.swd.oui","10.1.0.2.0"}
    #Name : SHOW_SPLASH_SCREEN
    #Datatype : Boolean
    #Description: Set to true if the initial splash screen in OUI needs to be shown.
    #Example: SHOW_SPLASH_SCREEN = true
    SHOW_SPLASH_SCREEN=true
    #Name : SHOW_WELCOME_PAGE
    #Datatype : Boolean
    #Description: Set to true if the Welcome page in OUI needs to be shown.
    #Example: SHOW_WELCOME_PAGE = false
    SHOW_WELCOME_PAGE=false
    #Name : SHOW_CUSTOM_TREE_PAGE
    #Datatype : Boolean
    #Description: Set to true if the custom tree page in OUI needs to be shown.
    #Use this page to select or de-select dependencies. This page appears only in a custom install type.
    #Example: SHOW_CUSTOM_TREE_PAGE = false
    SHOW_CUSTOM_TREE_PAGE=false
    #Name : SHOW_COMPONENT_LOCATIONS_PAGE
    #Datatype : Boolean
    #Description: Set to true if the component locations page in OUI needs to be shown.
    #This page only appears if there are products whose installed directory can be changed.
    #If you set this to false you will prevent the user from being able to specify alternate directories.
    #Example: SHOW_COMPONENT_LOCATIONS_PAGE = false
    SHOW_COMPONENT_LOCATIONS_PAGE=false
    #Name : SHOW_SUMMARY_PAGE
    #Datatype : Boolean
    #Description: Set to true if the summary page in OUI needs to be shown.
    #The summary page shows the list of components that will be installed in this session.
    #Example: SHOW_SUMMARY_PAGE = true
    SHOW_SUMMARY_PAGE=false
    #Name : SHOW_INSTALL_PROGRESS_PAGE
    #Datatype : Boolean
    #Description: Set to true if the install progress page in OUI needs to be shown.
    #This page shows the current status in the installation. The current status includes the product being installed and the file being copied.
    #Example: SHOW_INSTALL_PROGRESS_PAGE = true
    SHOW_INSTALL_PROGRESS_PAGE=false
    #Name : SHOW_REQUIRED_CONFIG_TOOL_PAGE
    #Datatype : Boolean
    #Description: Set to true if the required config assistants page in OUI needs to be shown.
    #This page shows the list of required configuration assistants that are part of this installation.
    #It shows the status of each assistant, including any failures with detailed information on why it failed.
    #Example: SHOW_REQUIRED_CONFIG_TOOL_PAGE = true
    SHOW_REQUIRED_CONFIG_TOOL_PAGE=false
    #Name : SHOW_CONFIG_TOOL_PAGE
    #Datatype : Boolean
    #Description: Set to true if the config assistants page in OUI needs to be shown.
    #This page shows the list of configuration assistants that are part of this installation and are configured to launch automatically.
    #It shows the status of each assistant, including any failures with detailed information on why it failed.
    #Example: SHOW_CONFIG_TOOL_PAGE = true
    SHOW_CONFIG_TOOL_PAGE=false
    #Name : SHOW_RELEASE_NOTES
    #Datatype : Boolean
    #Description: Set to true if the release notes of this installation need to be shown at the end of installation.
    #This dialog is launchable from the End of Installation page and shows the list of release notes available for the products just installed.
    # This also requires the variable SHOW_END_SESSION_PAGE variable to be set to true.
    #Example: SHOW_RELEASE_NOTES = true
    SHOW_RELEASE_NOTES=false
    #Name : SHOW_ROOTSH_CONFIRMATION
    #Datatype : Boolean
    #Description: Set to true if the Confirmation dialog asking to run the root.sh script in OUI needs to be shown.
    #Valid only for Unix platforms.
    #Example: SHOW_ROOTSH_CONFIRMATION = true
    SHOW_ROOTSH_CONFIRMATION=false
    #Name : SHOW_END_SESSION_PAGE
    #Datatype : Boolean
    #Description: Set to true if the end of session page in OUI needs to be shown.
    #This page shows if the installation is successful or not.
    #Example: SHOW_END_SESSION_PAGE = true
    SHOW_END_SESSION_PAGE=false
    #Name : SHOW_EXIT_CONFIRMATION
    #Datatype : Boolean
    #Description: Set to true if the confirmation when exiting OUI needs to be shown.
    #Example: SHOW_EXIT_CONFIRMATION = true
    SHOW_EXIT_CONFIRMATION=false
    #Name : NEXT_SESSION
    #Datatype : Boolean
    #Description: Set to true to allow users to go back to the File Locations page for another installation. This flag also needs to be set to true in order to process another response file (see NEXT_SESSION_RESPONSE).
    #Example: NEXT_SESSION = true
    NEXT_SESSION=false
    #Name : NEXT_SESSION_ON_FAIL
    #Datatype : Boolean
    #Description: Set to true to allow users to invoke another session even if current install session has failed. This flag is only relevant if NEXT_SESSION is set to true.
    #Example: NEXT_SESSION_ON_FAIL = true
    NEXT_SESSION_ON_FAIL=false
    #Name : NEXT_SESSION_RESPONSE
    #Datatype : String
    #Description: Optionally specifies the full path of the next session's response file. If only a file name is specified, the response file is retrieved from the <TEMP>/oraInstall directory. This variable is only active if NEXT_SESSION is set to true.
    #Example: NEXT_SESSION_RESPONSE = "nextinstall.rsp"
    NEXT_SESSION_RESPONSE=<Value Unspecified>
    #Name : DEINSTALL_LIST
    #Datatype : StringList
    #Description: List of components to be deinstalled during a deinstall session.
    #Example: DEINSTALL_LIST = {"oracle.swd.oui","10.1.0.2.0"}
    DEINSTALL_LIST={"oracle.swd.oui","10.1.0.2.0"}
    #Name : SHOW_DEINSTALL_CONFIRMATION
    #Datatype : Boolean
    #Description: Set to true if deinstall confimation is needed during a deinstall session.
    #Example: SHOW_DEINSTALL_CONFIRMATION = true
    SHOW_DEINSTALL_CONFIRMATION=true
    #Name : SHOW_DEINSTALL_PROGRESS
    #Datatype : Boolean
    #Description: Set to true if deinstall progress is needed during a deinstall session.
    #Example: SHOW_DEINSTALL_PROGRESS = true
    SHOW_DEINSTALL_PROGRESS=true
    #Name : ACCEPT_LICENSE_AGREEMENT
    #Datatype : Boolean
    #Description: By setting this variable to true, you are accepting the license agreement. This variable is used only for silent installations.
    #Example: ACCEPT_LICENSE_AGREEMENT = true
    ACCEPT_LICENSE_AGREEMENT=false
    #Name : SELECTED_LANGUAGES
    #Datatype : StringList
    #Description: Languages in which the components will be installed.
    #Component : oracle.swd.oui
    SELECTED_LANGUAGES={"en"}
    #Name : INSTALL_TYPE
    #Datatype : String
    #Description: Installation type of the component.
    #Component : oracle.swd.oui
    INSTALL_TYPE="Custom"
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.apache.isqlplus
    oracle.apache.isqlplus:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.cartridges.context
    oracle.cartridges.context:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.cartridges.locator
    oracle.cartridges.locator:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.java.jdbc.jdbc_dev
    oracle.java.jdbc.jdbc_dev:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.java.jdbc.oci_common
    oracle.java.jdbc.oci_common:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.ano.sns
    oracle.options.ano.sns:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.ano.ssl.owm
    oracle.options.ano.ssl.owm:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.intermedia.imcom
    oracle.options.intermedia.imcom:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.intermedia.jai
    oracle.options.intermedia.jai:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.olap
    oracle.options.olap:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.olap.cwmlite
    oracle.options.olap.cwmlite:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.ops
    oracle.options.ops:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.p2k.ott
    oracle.p2k.ott:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.p2k.precomp_common
    oracle.p2k.precomp_common:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.p2k.proc
    oracle.p2k.proc:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.p2k.procob
    oracle.p2k.procob:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.p2k.procob18
    oracle.p2k.procob18:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.aqapi
    oracle.rdbms.aqapi:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.expimp
    oracle.rdbms.expimp:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.hs_common
    oracle.rdbms.hs_common:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.hs_odbc
    oracle.rdbms.hs_odbc:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.lbac
    oracle.rdbms.lbac:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.mig
    oracle.rdbms.mig:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.nid
    oracle.rdbms.nid:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.occi
    oracle.rdbms.occi:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.otrace
    oracle.rdbms.otrace:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.plsql
    oracle.rdbms.plsql:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.rman
    oracle.rdbms.rman:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.sqlldr
    oracle.rdbms.sqlldr:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.sqlplus
    oracle.rdbms.sqlplus:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rsf.agent_rsf
    oracle.rsf.agent_rsf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rsf.clntsh_rsf
    oracle.rsf.clntsh_rsf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rsf.ldap_rsf
    oracle.rsf.ldap_rsf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rsf.net_rsf
    oracle.rsf.net_rsf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rsf.nlsrtl_rsf
    oracle.rsf.nlsrtl_rsf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rsf.oracore_rsf
    oracle.rsf.oracore_rsf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rsf.otrace_rsf
    oracle.rsf.otrace_rsf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rsf.precomp_rsf
    oracle.rsf.precomp_rsf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rsf.ssl_rsf
    oracle.rsf.ssl_rsf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rsf.xdk_rsf
    oracle.rsf.xdk_rsf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.tg.tg4sybs
    oracle.tg.tg4sybs:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.tg.tg4tera
    oracle.tg.tg4tera:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.utilities.util
    oracle.utilities.util:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.xml.parser.java
    oracle.xml.parser.java:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.xml.xml_ncomp
    oracle.xml.xml_ncomp:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.oid.client
    oracle.oid.client:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.common_schema
    oracle.rdbms.common_schema:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.networking.netsrv
    oracle.networking.netsrv:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.oid.server
    oracle.oid.server:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.dbv
    oracle.rdbms.dbv:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.networking.cman
    oracle.networking.cman:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.networking.names
    oracle.networking.names:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.ano.dce
    oracle.options.ano.dce:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.utilities.util_common
    oracle.utilities.util_common:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.networking.netclt
    oracle.networking.netclt:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.olap.api
    oracle.options.olap.api:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.partitioning
    oracle.options.partitioning:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.networking.netmgr
    oracle.networking.netmgr:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rsf.plsql_rsf
    oracle.rsf.plsql_rsf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.ano.ssl
    oracle.options.ano.ssl:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.demo
    oracle.rdbms.demo:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.xml.xsu
    oracle.rdbms.xml.xsu:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.java.sqlj.sqljruntime
    oracle.java.sqlj.sqljruntime:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.xml
    oracle.rdbms.xml:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.java.jdbc.thin12
    oracle.java.jdbc.thin12:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.cartridges.spatial
    oracle.cartridges.spatial:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.isearch.is_common
    oracle.isearch.is_common:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.isearch.client
    oracle.isearch.client:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rsf.dbjava_rsf
    oracle.rsf.dbjava_rsf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.java.javavm.javatools
    oracle.java.javavm.javatools:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.java.jdbc.thin14
    oracle.java.jdbc.thin14:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.isearch.server
    oracle.isearch.server:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.oci
    oracle.rdbms.oci:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.p2k.xmldevkit
    oracle.p2k.xmldevkit:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.intermedia.imclient.imclisamples
    oracle.options.intermedia.imclient.imclisamples:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.xml.parser.cplus
    oracle.xml.parser.cplus:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.xml.parser.c
    oracle.xml.parser.c:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.xml.parser.plsql
    oracle.xml.parser.plsql:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.assistants.acf
    oracle.assistants.acf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.oid.client_common
    oracle.oid.client_common:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.java.jdbc.thin11
    oracle.java.jdbc.thin11:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.oid.oidca
    oracle.oid.oidca:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.java.sqlj
    oracle.java.sqlj:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.oid.tools
    oracle.oid.tools:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.networking.netca
    oracle.networking.netca:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.xml.xsql
    oracle.xml.xsql:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.hs_olefs
    oracle.rdbms.hs_olefs:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.hs_olesql
    oracle.rdbms.hs_olesql:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.tg.tg4msql
    oracle.tg.tg4msql:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.emprod.agent_ext.oapps_agentext
    oracle.emprod.agent_ext.oapps_agentext:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.emprod.agent_ext.emd_agentext
    oracle.emprod.agent_ext.emd_agentext:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.emprod.agent_ext.oecm_agentext
    oracle.emprod.agent_ext.oecm_agentext:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.cartridges.ordcom
    oracle.cartridges.ordcom:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.emprod.agent_ext.sqlsrv_agentext
    oracle.emprod.agent_ext.sqlsrv_agentext:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.cartridges.ordaudio
    oracle.cartridges.ordaudio:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.cartridges.ordimg
    oracle.cartridges.ordimg:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.cartridges.ordsmv
    oracle.cartridges.ordsmv:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.xml.classgen.cplus
    oracle.xml.classgen.cplus:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.xml.classgen.java
    oracle.xml.classgen.java:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.xml.transx
    oracle.xml.transx:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.xml.transview
    oracle.xml.transview:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.advrep
    oracle.rdbms.advrep:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.csmig
    oracle.rdbms.csmig:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.tg.pg4appc
    oracle.tg.pg4appc:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.tg.pg4mq
    oracle.tg.pg4mq:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.tg.tg4drda
    oracle.tg.tg4drda:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.java.jdbc.jdbc_common
    oracle.java.jdbc.jdbc_common:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.hs_oledb
    oracle.rdbms.hs_oledb:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.emprod.oemagent.agentca
    oracle.emprod.oemagent.agentca:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.intermedia.imclient.imclijava
    oracle.options.intermedia.imclient.imclijava:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.intermedia.imclient.imclijmf
    oracle.options.intermedia.imclient.imclijmf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.intermedia.imclient.imcliweb
    oracle.options.intermedia.imclient.imcliweb:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rsf.rdbms_rsf
    oracle.rsf.rdbms_rsf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.emprod.agent_ext.ows_agentext
    oracle.emprod.agent_ext.ows_agentext:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.intermedia.imclient.imclicompat
    oracle.options.intermedia.imclient.imclicompat:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.java.javavm
    oracle.java.javavm:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.java.j2ee.core
    oracle.java.j2ee.core:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.emprod.oemagent.base_oemagent
    oracle.emprod.oemagent.base_oemagent:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.options.odm
    oracle.options.odm:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rsf.doc_rsf
    oracle.rsf.doc_rsf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms.dbscripts
    oracle.rdbms.dbscripts:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rsf.platform_rsf
    oracle.rsf.platform_rsf:PROD_HOME=<Value Unspecified>
    #Name : PROD_HOME
    #Datatype : String
    #Component : oracle.rdbms
    oracle.rdbms:PROD_HOME=<Value Unspecified>
    #Name : varMQM
    #Datatype : Number
    #Description: dialogLocation return value
    #Component : oracle.tg.pg4mq
    varMQM=<Value Unspecified>
    #Name : varDRDANETSEL
    #Datatype : Number
    #Description: Network Product Selection index for Dialog
    #Component : oracle.tg.tg4drda
    varDRDANETSEL=<Value Unspecified>

    I figured out the solution so I thought I would post it. Basically I didn't have the "- silent" piece included. Once I included it the patch ran in silent mode.
    Y:\Software\Oracle_9i_Patches\9.2.0.5_PATCH_SET_FOR_ORACLE_DATABASE_SERVER\Disk1\install\setup.exe -silent -responseFile Y:\Software\Oracle_9i_Patches\9.2.0.5_PATCH_SET_FOR_ORACLE_DATABASE_SERVER\Disk1\patchset.rsp

  • Silent Install of Oracle 8i on NT

    I'm having trouble silently installing Oracle 8i on Windows NT. I have customized the svrcustom.rsp file (see below) but I'm getting an error that says "no forced value specified for the variable ToplevelComp". Anyone with
    more experience with this have any idea about what's going on?
    -- <snip> --
    silentInstall2002-03-20_01-48-14-PM.log
    No forced value specified for the variable ToplevelComp, associated with property TopLevelComp, in dialog Available Products.
    -- <snip> --
    # comments taken out
    [General]
    RESPONSEFILE_VERSION=1.7.0
    [SESSION]
    FROM_LOCATION="e:\stage\products.jar"
    FROM_LOCATION_CD_LABEL=<Value Unspecified>
    NEXT_SESSION_RESPONSE=<Value Unspecified>
    ORACLE_HOME="D:\oracle\ora81test"
    ORACLE_HOME_NAME="OraH81Test"
    TOPLEVEL_COMPONENT={ "oracle.secd","8.1.7.0.0" }
    SHOW_SPLASH_SCREEN=false
    SHOW_WELCOME_PAGE=false
    SHOW_COMPONENT_LOCATIONS_PAGE=false
    SHOW_CUSTOM_TREE_PAGE=false
    SHOW_SUMMARY_PAGE=false
    SHOW_INSTALL_PROGRESS_PAGE=true
    SHOW_REQUIRED_CONFIG_TOOL_PAGE=true
    SHOW_OPTIONAL_CONFIG_TOOL_PAGE=false
    SHOW_RELEASE_NOTES=false
    SHOW_END_SESSION_PAGE=false
    SHOW_EXIT_CONFIRMATION=false
    NEXT_SESSION=false
    NEXT_SESSION_ON_FAIL=false
    [oracle.secd_8.1.7.0.0]
    COMPONENT_LANGUAGES={"en"}
    INSTALL_TYPE="Custom"
    DEPENDENCY_LIST={"oracle.rdbms","8.1.7.0.0","oracle.secd.options","8.1.7.0.0","oracle.networking","8.1.7.0.0","oracle.utilities","8.1.7.0.0","oracle.java","8.1.7.0.0","oracle.assistants","8.1.7.0.0","oracle.p2k.devtools","8.1.7.0.0","oracle.install","8.1.7.0.0" }
    [oracle.apache_1.3.12.0.1a]
    DEPENDENCY_LIST={}
    OPTIONAL_CONFIG_TOOLS={"configtool2"}
    [oracle.secd.options_8.1.7.0.0]
    DEPENDENCY_LIST={"oracle.options.intermedia.imserver","8.1.7.0.0","oracle.rdbms.advrep","8.1.7.0.0"}
    [oracle.networking_8.1.7.0.0]
    DEPENDENCY_LIST={ "oracle.networking.netclt","8.1.7.0.0","oracle.networking.netsrv","8.1.7.0.0","oracle.networking.names","8.1.7.0.0","oracle.networking.cman","8.1.7.0.0" }
    [oracle.utilities_8.1.7.0.0]
    DEPENDENCY_LIST={ "oracle.utilities.util","8.1.7.0.0","oracle.rdbms.sqlplus","8.1.7.0.0" }
    [oracle.java_8.1.7.0.0]
    DEPENDENCY_LIST={ "oracle.java.jdbc","8.1.7.0.0","oracle.java.javavm.javatools","8.1.7.0.0" }
    [oracle.emprod_8.1.7.0.0]
    DEPENDENCY_LIST={ "oracle.emprod.oemagent","8.1.7.0.0","oracle.emprod.agent_ext","8.1.7.0.0","oracle.sysman.client","2.2.0.0.0" }
    [oracle.assistants_8.1.7.0.0]
    DEPENDENCY_LIST={ "oracle.assistants.dbca","8.1.7.0.0" }
    [oracle.p2k.devtools_8.1.7.0.0]
    DEPENDENCY_LIST={ "oracle.rdbms.oci","8.1.7.0.0", "oracle.rdbms.xml.xsu","2.0.0.0.0" }
    [oracle.install_8.1.7.0.0]
    DEPENDENCY_LIST={ "oracle.swd.oui","1.7.1.9.0" }
    [oracle.omwb_1.3.0.0.0]
    DEPENDENCY_LIST={}
    [oracle.networking.protocol_supp_8.1.7.0.0]
    sl_protocolSelectionDialogReturn={}
    [oracle.networking.netca_8.1.7.0.0]
    OPTIONAL_CONFIG_TOOLS={}
    s_responseFileName="a:\netca.rsp"
    b_launchNETCA=false
    [oracle.java.jdbc_8.1.7.0.0]
    DEPENDENCY_LIST={ "oracle.java.jdbc.oci11","8.1.7.0.0","oracle.java.jdbc.oci12","8.1.7.0.0","oracle.java.jdbc.thin11","8.1.7.0.0","oracle.java.jdbc.thin12","8.1.7.0.0" }
    [oracle.assistants.dbma_8.1.7.0.0]
    OPTIONAL_CONFIG_TOOLS={}
    sl_migrateSIDDialogReturn={"<None>", "<None>"}
    [oracle.assistants.dbca_8.1.7.0.0]
    OPTIONAL_CONFIG_TOOLS={"dbca"}
    s_seedLocation=<Value Unspecified>
    b_createStarterDBReturn=true
    s_responseFileName="a:\dbca.rsp"
    s_globalDBName="staticx.wexford.sonicfoundry.com"
    NORMALLY THIS IS ORCL
    s_dbSid="ORCLTest"
    [oracle.emprod.agent_ext_8.1.7.0.0]
    DEPENDENCY_LIST={ "oracle.emprod.agent_ext.oapps_agentext","8.1.7.0.0" }
    [oracle.sysman.oms_2.2.0.0.0]
    DEPENDENCY_LIST={}
    OPTIONAL_CONFIG_TOOLS={}
    s_responseFileEMCA="a:\emca.rsp"
    ServerRepository_index=1
    EMCARspFileLocation="a:/emca.rsp"
    [oracle.sysman.client_2.2.0.0.0]
    DEPENDENCY_LIST={ "oracle.sysman.dbappext","2.2.0.0.0","oracle.sysman.emevents","2.2.0.0.0","oracle.sysman.repmig","2.2.0.0.0","oracle.sysman.dbapp","2.2.0.0.0" }
    [oracle.sysman.dbappext_2.2.0.0.0]
    DEPENDENCY_LIST={ "occm","2.2.0.0.0", "oracle.odm","2.1.1.0.0","oracle.sysman.wf.client","2.2.0.0.0","oracle.security.admin.enterprise","2.0.0.1.0","oracle.networking.netmgr.emint","8.1.7.0.0"}
    [oracle.sysman.emevents_2.2.0.0.0]
    DEPENDENCY_LIST={}
    [oracle.sysman.dbapp_2.2.0.0.0]
    DEPENDENCY_LIST={ "oracle.sysman.dbapp.sqlplusworksheet","2.2.0.0.0","oracle.sysman.database","2.2.0.0.0" }
    [oracle.sysman.website.jinit_2.2.0.0.0]
    DEPENDENCY_LIST={}
    [oracle.swd.oui_1.7.1.9.0]
    PROD_HOME="C:\Program Files\Oracletest\OUI"
    [oracle.swd.jre_1.1.7.30]
    PROD_HOME="C:\Program Files\Oracletest\jre"

    please find below link, it is having step by step oracle 11g installtion on oracle linux5
    please fallow up to Installation ..dont invoke directly ./runInstaller.
    go to unzip directory..u may find respance folder in taht edit.rsp file as per the your requirement.
    please post .rsp paramters details..will guide you what needs to be set....if know the parameters...edit it and save ...then execute below
    go to runInstaller having folder..the execute below cmd.
    ./runInstaller -silent -responseFile /u01/Disk1/responce/rsp11g.rsp DECLINE_SECURITY_UPDATES=true
    http://www.oracle-base.com/articles/11g/oracle-db-11gr2-installation-on-oracle-linux-5.php

  • Oracle text in oracle 10g

    Hi friends,
    thinking about migration from oracle 9i to oracle 10g. We use Oracle Text indexes on text columns of some tables. Is there any advantage with oracle 10g intermedia? Which are the most significant changes?
    Thanks for answers.

    The following links describe the new Text features in Oracle 10g and 11g.
    http://download.oracle.com/docs/cd/B19306_01/text.102/b14218/whatsnew.htm#i969790
    http://download.oracle.com/docs/cd/B28359_01/text.111/b28304/whatsnew.htm#sthref6

  • APEX app using Oracle Text  to index pages that require authorzation

    Hi Gurus and APEX Dev team
    My team need to develop an APEX App that will index all our documents spread across various servers. Some of the documents require Single sign on access (e.g. KIX.oraclecorp.com) and some require other authorization methods (e.g. Metalink) . The Question is , Is it possible to index the pages that require authorization using Oracle text. If yes How? I have implemented the demo app which can index pages that do not require authorization.
    Thanks a million
    regards
    Bala

    Hello,
    Unless I misunderstand you, the fact that the pages require authentication doesn't really matter, it is the underlying data you want to index correct? If so then you would index them in exactly the same way that you would index any table data using Oracle Text/interMedia.
    John.
    Blog: http://jes.blogs.shellprompt.net
    Work: http://www.apex-evangelists.com
    Author of Pro Application Express: http://tinyurl.com/3gu7cd
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone!

Maybe you are looking for