Error installing enterprise edition

Hi,
I have a problem when I try to install oracle enterprise edition 10.2.0.
The installation ends and when I try to connect to the em I get no respnse from my explorer. I opened the emca log file and in the last lines it has :
SEVERE: Error starting Database Control
Refer to the log file at C:\oracle\product\10.2.0\db_1\cfgtoollogs\dbca\orcl\emConfig.log for more details.
9 Apr 2007 5:11:39 am oracle.sysman.emcp.EMConfig perform
CONFIG: Stack Trace:
oracle.sysman.emcp.exception.EMConfigException: Error starting Database Control
at oracle.sysman.emcp.EMDBPostConfig.performConfiguration(EMDBPostConfig.java:569)
at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:181)
at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:150)
at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:155)
at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:430)
at java.lang.Thread.run(Thread.java:534)
Can anyone help please?

I get this:
Oracle Enterprise manager....
Agent version...
Agent is already started. Will restart the agent.This means your current ORACLE_HOME is pointed to OMS agent installation. Are you trying to configure and start Agent or standalone dbconsole?
dbconsole is part of Oracle database installation, to configure it you need to make sure your ORACLE_HOME is pointed to your database installation where Oracle instance started.

Similar Messages

  • PLSQL script error - 10g enterprise edition

    Hi,
    I designed the following pl/sql program/script. It completed successfully but skips one record ( I dont know first or last ) only in the middle for loop. I did this on 10g or 11g ( dont remember exactly but one of these two ) enterprise edition. But when I tried the same code shown after this code on my personal laptop express edition, it inserted all the records correctly. Can anybody please explain the reason. There are 3 for loops one nested below another loop to load vendors, vendor sites, vendor contacts. If there were 1000 vendors, 1500 vendor sites, 900 contacts to load. The code below has loaded 1000 vendors, 1499 vendor sites ( skipped one record ) and 900 contacts.
    CREATE OR REPLACE PROCEDURE APPS.p_create_vendor5 as
    --Declare  
    cursor main_vendors is
             select pov.vendor_id,
                   pov.segment1,
                   pov.vendor_name
                   from                        
                   po.po_vendors;
    cursor  vendor_sites ( vendor_id_in number ) is
                select povs.vendor_id,
                   povs.vendor_site_id,
                   povs.vendor_site_code site_name
                                from
                    po.po_vendor_sites_all povs
              where povs.vendor_id = vendor_id_in;
    cursor vendor_contacts ( vendor_site_id_in number ) is
          select povc.vendor_contact_id,
                   povc.inactive_date,
                   povc.first_name,
                   povc.middle_name,
                   povc.last_name
            from
                   po.po_vendor_contacts povc
              where povc.vendor_site_id = vendor_site_id_in;
    l_input_vendor_seq          number; 
    l_input_site_seq             number;
    l_input_site_contact_seq     number;
    l_site_name                 VARCHAR2(115);
    begin
    for rec in main_vendors loop
         Begin
          select AP_SUPPLIERS_INT_S.NEXTVAL
           into l_input_vendor_seq
           from DUAL;
         insert into ap_suppliers_int
                   (vendor_interface_id,
                    vendor_name,
                    created_by,
                    creation_date,
                    status )
              VALUES
              (l_input_vendor_seq,  ----------AP_SUPPLIERS_INT_S.NEXTVAL,
               rec.vendor_name,
               -1,
               trunc(sysdate),
               'NEW');
           dbms_output.put_line('Inserted AP_SUPPLIERS_INT record for vendor (' || rec.vendor_name || '), id=' || to_char(l_input_vendor_seq) || ') ');
         exception   --- error logging for the Vendor Record
                when others then
                    dbms_output.put_line('ERROR Inserting AP_SUPPLIERS_INT             record for vendor (' ||
                     rec.vendor_name || '), id=' || to_char                    (l_input_vendor_seq) || ') || ');
                    dbms_output.put_line(nvl(fnd_message.get, SQLERRM));
                    dbms_output.new_line;
                --  rollback;
            END;   --- Vendor Record
             Begin
                 For site in vendor_sites (rec.vendor_id )  loop
                       insert into ap_supplier_sites_int
              (vendor_interface_id,
               vendor_id,
               vendor_site_code,
              VALUES
              (l_input_vendor_seq,
               site.vendor_id,
               site.site_name  
          dbms_output.put_line('Inserted AP_SUPPLIER_SITES_INT record         for vendor (' ||
                    rec.vendor_name || '), id=' ||  to_char(l_input_vendor_seq)         || '), )');
               Begin
                  For contact in vendor_contacts (site.vendor_site_id ) loop
                insert into ap_sup_site_contact_int
              (      vendor_site_id,
                    --vendor_site_code,
                     inactive_date,
                     first_name,
                     middle_name,
                     last_name
                 VALUES
                  site.vendor_site_id ,
                  --Contact.vendor_site_code,
                  Contact.inactive_date,
                  Contact.first_name,
                  Contact.middle_name,
                  Contact.last_name
          dbms_output.put_line('Inserted AP_SUP_SITE_CONTACT_INT record         for vendor (' ||
                    rec.vendor_name || '), id=' ||  to_char(l_input_vendor_seq)         || '), )');
                end loop;
         exception   --- for the vendor site contact record
                when others then
                    dbms_output.put_line('ERROR inserting                 AP_SUP_SITE_CONTACT_INT record for vendor (' ||
                    rec.vendor_name || '), Site=' ||  to_char('')         || ') )');
                    dbms_output.put_line(nvl(fnd_message.get, SQLERRM));
                    dbms_output.new_line;
                    rollback;
             end;
            end loop;
    exception   --- for the Vendor Site Record
                when others then
                    dbms_output.put_line('ERROR inserting                     AP_SUPPLIER_SITES_INT record for vendor (' ||
                    rec.vendor_name || '), id=' ||  to_char(l_input_vendor_seq)             || ')');
                    dbms_output.put_line(nvl(fnd_message.get, SQLERRM));
                    dbms_output.new_line;
                    rollback;
    end;
    end loop;
       commit;
       exception
        when others then
            dbms_output.put_line('Fatal Error!');
            dbms_output.put_line(nvl(fnd_message.get, SQLERRM));
            dbms_output.put_line(dbms_utility.format_error_backtrace);
           Rollback;
    end;
    /---The code that worked correctly on my personal laptop with express edition. This was not created as a procedure like above because there is no procedural option installed/enabled on my laptop. To override that error I ran it as pl/sql script. But in above case even running it as a script like below skipped on record. I mean if there were 1000 vendors, 1500 vendor sites, 900 contacts. The code below loaded everything correctly but the code above loaded 1000 vendors correctly but it only loaded 1499 vendor sites ( skipped one site ) and loaded 900 contacts correctly.
    declare 
    cursor main_vendors is
             select *
             from                        
                   po_headers_all;
    cursor  vendor_sites ( hdr_id number ) is
                select *
              from
                   po_lines_all b
              where b.po_header_id = hdr_id;
    cursor vendor_contacts (lin_id number) is
                select * from po_line_locations_all where po_line_id = lin_id;
    l_input_vendor_seq          number; 
    l_input_site_seq             number;
    l_input_site_contact_seq     number;
    l_site_name                 VARCHAR2(115);
    --payment_term_v              ap.AP_TERMS_TL.name%type;
    --payment_term_id_v           ap.AP_TERMS_TL.term_id%type;
    begin
    for rec in main_vendors loop
         Begin
          select AP_SUPPLIERS_INT_S.NEXTVAL
           into l_input_vendor_seq
           from DUAL;
              insert into po_headers_all_int
                   ( po_header_id,
                     segment1,
                     po_type_lookup_code,
                     vendor_name,
                     attribute1,
                     po_date,
                     po_description,
                     attribute2
                   VALUES
                   (l_input_vendor_seq,  ----------AP_SUPPLIERS_INT_S.NEXTVAL,
                    --rec.po_header_id,
                    rec.segment1,
                    rec.po_type_lookup_code,
                    rec.vendor_name,
                    rec.attribute1,
                    rec.po_date,
                    rec.po_description,
                    rec.attribute2
           dbms_output.put_line('Inserted AP_SUPPLIERS_INT record for         vendor (' || rec.vendor_name || '), id=' || to_char            (l_input_vendor_seq) || ') ');
         exception   --- error logging for the Vendor Record
                when others then
                    dbms_output.put_line('ERROR Inserting AP_SUPPLIERS_INT             record for vendor (' ||
                     rec.vendor_name || '), id=' || to_char                    (l_input_vendor_seq) || ') || ');
                    --dbms_output.put_line(nvl(fnd_message.get, SQLERRM));
                    dbms_output.new_line;
                --  rollback;
            END;   --- Vendor Record
             Begin
                 For site in vendor_sites (rec.po_header_id )  loop
                   insert into po_lines_all_int
                       (po_header_id,
                        po_line_id,
                        quantity,
                        unit_price,
                        line_num,
                        line_description,
                        --creation_date,
                        created_by
                       VALUES
                       (l_input_vendor_seq,
                        --rec.po_header_id,
                        site.po_line_id,
                        site.quantity,
                        site.unit_price,
                        site.line_num,
                        site.line_description,
                        --'09-AUG-2010',
                        1
          dbms_output.put_line('Inserted AP_SUPPLIER_SITES_INT record         for vendor (' ||
                    site.line_num || '), id=' ||  to_char(l_input_vendor_seq)         || '), )');
                Begin
                 For contact in vendor_contacts (site.po_line_id )  loop
                   insert into po_line_locations_all_int ( po_header_id, po_line_id, line_location_id, shipment_num, description, quantity )
                      values (l_input_vendor_seq, site.po_line_id, contact.line_location_id, contact.shipment_num, contact.description, contact.quantity );
                 end loop; 
                 end;
            end loop;
    exception   --- for the Vendor Site Record
                when others then
                    dbms_output.put_line('ERROR inserting                     AP_SUPPLIER_SITES_INT record for vendor (' ||
                    rec.vendor_name || '), id=' ||  to_char(l_input_vendor_seq)             || ')');
                    --dbms_output.put_line(nvl(fnd_message.get, SQLERRM));
                    dbms_output.new_line;
                    rollback;
    end;
    end loop;
       commit;
       exception
        when others then
            dbms_output.put_line('Fatal Error!');
           -- dbms_output.put_line(nvl(fnd_message.get, SQLERRM));
            dbms_output.put_line(dbms_utility.format_error_backtrace);
           Rollback;
    end;Edited by: user13301132 on 24-Aug-2010 11:21 AM
    Edited by: user13301132 on 24-Aug-2010 12:05 PM
    Edited by: user13301132 on 24-Aug-2010 12:07 PM
    Edited by: user13301132 on 25-Aug-2010 9:53 AM

    I know this doesn't answer your question directly, but is there any reason why you have gone with loop processing like this instead of far more efficient and easier to maintain INSERT ... INTO ... SELECT ... FROM blocks?
    There's no reason for example that
                 For site in vendor_sites (rec.vendor_id )  loop
                       insert into ap_supplier_sites_int
              (vendor_interface_id,
               vendor_id,
               vendor_site_code,
              VALUES
              (l_input_vendor_seq,
               site.vendor_id,
               site.site_name  
               );(which has a bug in it by the way - you have an extraneous comma).
    cannot be
    insert into ap_supplier_sites_int (vendor_interface_id,
                                                 vendor_id,
                                                 vendor_site_code)
                select input_vendor_seq.nextval,
                         povs.vendor_id,
                        povs.vendor_site_code site_name
                                from
                    po.po_vendor_sites_all povs
              where povs.vendor_id = vendor_id_in;also I just noticed you may want to look at your cursor declarations:
                    po.po_vendor_sites_all povs;
              where povs.vendor_id = vendor_id_in;looks like you've been messing around with it trying to get it to work, but have forgotton to remove a semi-colon.

  • Problem installing enterprise edition 10.2.0

    Hi,
    I have a problem when I try to install oracle enterprise edition 10.2.0.
    The installation ends and when I try to connect to the em I get no respnse from my explorer. I opened the emca log file and in the last lines it has :
    SEVERE: Error starting Database Control
    Refer to the log file at C:\oracle\product\10.2.0\db_1\cfgtoollogs\dbca\orcl\emConfig.log for more details.
    9 Apr 2007 5:11:39 am oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error starting Database Control
         at oracle.sysman.emcp.EMDBPostConfig.performConfiguration(EMDBPostConfig.java:569)
         at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:181)
         at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:150)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:155)
         at oracle.sysman.assistants.util.em.EMConfiguration.run(EMConfiguration.java:430)
         at java.lang.Thread.run(Thread.java:534)
    Can anyone help please?

    I got the same issue with Windows XP then sometimes the same exe worked. But I tried the other way, you have one more setup file in install directory. Try to run that and see. It may be silly but it worked.

  • Error in Enterprise Edition

    Hi !
    I download correctly the Oracle Enterprise Edition, but i have a
    problem when i decompressed the file.
    The message error in file (/bin/cursize) :
    GZIP : STDIN : INVALID COMPRESSED DATA FORMA VIOLATED
    Abdallah.
    null

    Hi all,
    Something news from Oracle about the EE version .tgz file ?
    I downloading the file the morning and i decompressed
    NO PROBLEM and NO ERROR IN FILE .tgz
    The file is decompressed correctelly.
    Some news !?
    Sbdallah.
    null

  • Error Installing Java 2 Platform Standard Edition v 1.4.2 (J2SE)

    I tried to install J2EESKD-1_4-DR_WINDOWS-EVAL.exe
    I received the following email message:
    This program has performed an illegal operation and will be shut down.
    J2EESDK-1_4-DR-WINDOWS-EVAL caused an invalid page fault in
    module MSVCRT.DLL at 015f:780012b1.
    Registers:
    EAX=00000006 CS=015f EIP=780012b1 EFLGS=00010206
    EBX=00000000 SS=0167 ESP=00550000 EBP=0055000c
    ECX=004159b4 DS=0167 ESI=8164f690 FS=38ff
    EDX=7efeff52 ES=0167 EDI=8164f938 GS=0000
    Bytes at CS:EIP:
    ff 35 50 a1 03 78 ff 74 24 08 e8 03 00 00 00 59
    Stack dump:
    004029b5 00000006 004159b4 0055001c 004029fe
    00000006 00000000 00550048 00404cf8 004159b4
    8164f690 00000000 00000000 00000000 00000000
    00000000
    Please reply soon.
    Thanks,
    Sincerely,
    Egan

    I'm having the same problem installing Enterprise Edition.
    I'm installing it on 98se which I think may be one of the causes as this version of Windows is not supported.
    Any help would be appreciated as I don't fancy upgrading my OS (and computer) quite yet.
    I suppose I could partition my hard drive and convert to Linux!
    Dave

  • Error installing Oracle 10.2.0.4 on windows 2008 r2

    Hi,
    I am trying to installing SAP netweaver 7.01 server on  oracle 1.2.0.4 in Windows 2008 64-bit system.
    But when I try to install oracle I get this error.
    Checking operating system version: must be 5.1 or 5.2.    Actual 6.0
    I did search on sdn at the pam matrix it should be possible. And according to OSS note 1326698 it is supported on Windows 2008.
    Any help?
    Reza

    Hej Bhavik,
    Are you Installing Enterprise Edition of Oracle 10.2.0.4 64bit ?
    Yes I am installing ORACLE-10.2-rdbms 64bit.
    Administrator user is in use for performing the Installation ?
    Yes Administrator user is in use
    I Check the PAM at http://service.sap.com/pam.
    Also refer this SAP Note 1303262 - Oracle on Windows Server 2008 along with the Installation Guide.
    Yes I did refer to note 1303262.
    I did fundet Note 980426 - Oracle 10.2 Software installation on new operating systems from a link you give me.
    There is 4 workaround but I do not know this can help me.
    I make a copy of installation cdu2019es on my server and I try to install oracle from there.
    I want to try workaround 3 from sso notes: I download RUNINSTALLER.ZIP file.
    But I can not find RUNINSTALLER on my installation file.
    It is first time I am installing Oracle bd.
    Any help?
    Reza

  • Downgrade enterprise edition to Standard Edition One

    I downloaded database 11g for solaris intending to install standard edition one.
    During the install I did not see any options for the edition, and installed enterprise edition. I then deinstalled enterprise edition options but the database banner is still indicating it is enterprise edition. Is it possible to downgrade to standard edition one ? Where should I have selected the edition during the install ?

    The Standard Edition One install is assumed to be the same as the Standard Edition install since it contains the same features. You are on your honour to not enable the RAC capability or to install it on a machine capable of more than 2 CPU sockets. You should have seen the option to install Standard Edition.
    See metalink note 139642.1

  • Installation - Enterprise Edition

    Good Afternoon,
    When trying to install Enterprise Edition (Oracle Database 11g Rel 2 Installer) onto my laptop with Windows 7 OS, I get the following errror message:
    File not found
    C:\app\Chelle\product\11.2.0\dbhome_1\owb\external\oc4j_applications\
    applicattions\WFMLRSVCApp.ear
    What does this mean and what steps are necessary to resolve or can I continue installing?
    I greatly appreciate the help!

    976505 wrote:
    I'm I correct in assuming that I should specify the home directory when I download the database?That depends on what you think you mean by 'download the database'.
    To me, that phrase is an incorrect use of the term "database" and really means to download the installation software from Oracle and place it somewhere on your PC. If that is what you mean, then no, you do not specify the ORACLE_HOME when you "download the database installation software". You download to whereever seems best. Probably some sort of 'download' directory.
    When you run the installer you will be prompted at some point to specify the ORACLE_BASE and ORACLE_HOME directories.
    But again .. and again .. you are trying to do this on an OS that is NOT certified to run Oracle products. Results may not be what you expect and may not be correctable.

  • Difference between Enterprise Edition and Standard Edition for Oracle RAC

    Hi,
    In our current setup we have RAC on standard edition and client is now planning to go for Enterprise Edition but not yet decide because of cost.
    Is there any difference between Grid Infrastructure 11gR3 Enterprise edition and Standard Edition ?
    They told me to first install Enterprise Edition and then will move to Standard Edition if they can't get the EE license so in that case do i have to re-install Grid infrastructure for standard edition?
    Regards,
    Chirag

    994551 wrote:
    Hi,
    In our current setup we have RAC on standard edition and client is now planning to go for Enterprise Edition but not yet decide because of cost.
    Is there any difference between Grid Infrastructure 11gR3 Enterprise edition and Standard Edition ?
    They told me to first install Enterprise Edition and then will move to Standard Edition if they can't get the EE license so in that case do i have to re-install Grid infrastructure for standard edition?Hi,
    There is no "Grid Infrastructure 11gR3 Enterprise edition and Standard Edition", is only Grid Infrastructure 11gR2.
    About Oracle Clusterware (Grid Infrastructure) licensing.
    At least one of the servers in the cluster is licensed for Oracle Database (SE1, SE, or EE)
    A cluster is defined to include all the machines that share the same Oracle Cluster Registry (OCR) and Voting Disk.
    http://docs.oracle.com/cd/E11882_01/license.112/e10594/editions.htm#CJAHFHBJ
    About Database licensing.
    http://www.oracle.com/us/products/database/enterprise-edition/comparisons/index.html
    Note : Oracle Real Application Clusters (Oracle RAC), is an option to Oracle Database 11g Enterprise Edition and included with Oracle Database 11g Standard Edition (on clusters with a maximum of 4 sockets).
    If you move to Oracle EE you must purchase a separate licence to use RAC option
    About Installation:
    Nothing changes on your current setup of Grid Infrastructure 11.2
    Just install a new fresh installation of Oracle Database (On current clusterware) chosing E.E during Install. Configure the database/services to start from this new ORACLE HOME. Nothing change on Database all previous backup and features used still unchanged. Using this new Oracle Home new features are enabled to be used by your databases.
    About Downgrade:
    Step by Step Procedure to Convert from Enterprise Edition to Standard Edition [ID 465189.1]

  • Question regarding Upgrading from Standard Edition to Enterprise Edition

    DB version:10gR2
    We want to upgrade from Standard Edition to Enterprise Edition.
    In the following documention
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14238/intro.htm#BABFBJCC
    It talks about
    Deinstall the Standard Edition server software.I don't understand what they mean by DeInstall the software.
    Question 1.
    By 'DeInstall' , they mean , use DeInstall Products in the Welcome screen of Oracle Universal Installer and Remove the chosen OUI Home.Right?
    Question 2.
    If i 'Deinstall' (ie. remove the software), all the binaries are lost. Right? So what is the point of having just the data files?
    Edited by: Citizen_2 on Apr 8, 2009 1:59 AM

    Citizen_2 wrote:
    DB version:10gR2
    Question 1.
    By 'DeInstall' , they mean , use DeInstall Products in the Welcome screen of Oracle Universal Installer and Remove the chosen OUI Home.Right?Yes, that means use OUI and deinstall the Standard Edition
    Question 2.
    If i 'Deinstall' (ie. remove the software), all the binaries are lost. Right? So what is the point of having just the data files?Because next point says install Enterprise Edition. For first get rid of old one and then install the needed one. There is no such option as upgrade in this case.

  • Error while Installing R12.1.1 on Windows 2003 Enterprise Edition

    Dear All,
    I am installing R12.1.1 on Windows 2003 Enterprise Edition Server. I am using the media source that i have downloaded from Oracle Edelivery. I have done a MD5Sum check on the dowloaded files based the MD5SUM Check details given in site. (Not after staging).
    I have the stage files in the same partition as the partition in which the OS & Oracle is being installed (Free space is 300GB after staging)
    When the Installation reaches 53%, the installation fails with the following Error: "RW-50004: Error code received when running external process. Check log file for details. Running APPL_TOP Install Driver for VIS Instance"
    Log File:
    =====================
    e:\oracle\VIS\inst\apps\VIS_r12\logs\03021433.log
    ================================
    Processing Step 3 of 5
    Executing: e:\oracle\VIS\inst\apps\VIS_r12\temp\adrunias.cmd
    D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>REM Perform the registration for tech stack
    D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>echo Statusstring Registering Applications Technology Stack
    Statusstring Registering Applications Technology Stack
    D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>(echo APPS & echo APPS ) | D:\StageR12\startCD\Disk1\rapidwiz\jre\NT\1.6.0\bin\java -mx512M -classpath .;D:\StageR12\startCD\Disk1\rapidwiz\jlib\java;D:\StageR12\startCD\Disk1\rapidwiz\jlib\xmlparserv2.jar;D:\StageR12\startCD\Disk1\rapidwiz\jlib\ojdbc14.jar;D:\StageR12\startCD\Disk1\rapidwiz\jlib\oui\OraInstaller.jar;D:\StageR12\startCD\Disk1\rapidwiz\jlib\oui\ewt3.jar;D:\StageR12\startCD\Disk1\rapidwiz\jlib\oui\share.jar;D:\StageR12\startCD\Disk1\rapidwiz\jlib\oui\srvm.jar oracle.apps.ad.clone.ApplyAppsTechStack -e e:\oracle\VIS\inst\apps\VIS_r12\appl\admin\VIS_r12.xml -stage D:\StageR12\startCD\Disk1\rapidwiz -showProgress -phase reg -nopromptmsg
    Log file located at e:\oracle\VIS\inst\apps\VIS_r12\admin\log\ApplyAppsTechStack_03021625.log
    **** truncated *************
    - 3% completed
    \ 3% completed RC-50004: Fatal: Error occurred in ApplyAppsTechStack:
    RC-50013: Fatal: Failed to instantiate driver e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\driver\regclone.drv
    D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>if 1 == 0 goto :REG_OK
    D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>echo Cannot execute registration of Applications Techstack
    Cannot execute registration of Applications Techstack
    D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp>if "" == "TRUE" goto :INSIAS_OK RW-50010: Error: - script has returned an error: 1
    RW-50004: Error code received when running external process. Check log file for details.
    Running APPL_TOP Install Driver for VIS instance
    ApplyAppsTechStack_03021625.log
    =========================
    Started ApplyAppsTechStack at Wed Mar 02 16:25:21 IST 2011
    Version:
         ApplyAppsTechStack.java     :      120.23
    Executing home registration for s_weboh_oh...
    Registering using Registration Driver
    e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\driver\regclone.drv
    instantiate file:
    source : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\template\adouiweboh.pl
    dest : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\ouicli.pl
    backup : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\ouicli.pl to e:\oracle\VIS\inst\apps\VIS_r12\out\ouicli.pl
    setting permissions: 700
    instantiate file:
    source : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\template\txkstubcfg1013.pl
    dest : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\txkstubcfg1013.pl
    backup : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\txkstubcfg1013.pl to e:\oracle\VIS\inst\apps\VIS_r12\out\txkstubcfg1013.pl
    setting permissions: 700
    instantiate file:
    source : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\template\apachectl_sh_1013_oh.tmp
    dest : e:\oracle\VIS\apps\tech_st\10.1.3\Apache\Apache\bin\apachectl
    backup : e:\oracle\VIS\apps\tech_st\10.1.3\Apache\Apache\bin\apachectl to e:\oracle\VIS\inst\apps\VIS_r12\out\apachectl
    setting permissions: 700
    Executing script in InstantiateFile:
    e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\lib\MSWin32-x86-multi-thread -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\lib -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\site\5.8.3\lib\MSWin32-x86-multi-thread -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\site\5.8.3\lib -I e:\oracle\VIS\apps\apps_st\appl\au\12.0.0\perl -I e:\oracle\VIS\apps\tech_st\10.1.3\Apache\Apache\mod_perl\site\5.8.3\lib\MSWin32-x86-multi-thread e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\ouicli.pl
    script returned:
    Timed out( 3750000 ): Interrupted Exception
    Beginning OUI CLI cloning for s_weboh_ohWed Mar 2 16:25:24 2011
    e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\jdk\jre\bin\java.exe -classpath D:\StageR12\startCD\Disk1\rapidwiz\jlib\java;e:\oracle\VIS\apps\tech_st\10.1.3\oui\jlib\OraInstaller.jar;D:\StageR12\startCD\Disk1\rapidwiz\jlib\xmlparserv2.jar;D:\StageR12\startCD\Disk1\rapidwiz\jlib\ojdbc14.jar oracle.apps.ad.clone.util.OracleHomeCloner -OUICLI -e e:\oracle\VIS\inst\apps\VIS_r12\appl\admin\VIS_r12.xml -nolink -oaVar s_weboh_oh -homestub weboh -log e:\oracle\VIS\inst\apps\VIS_r12\admin\log\ohclone.log
    running OUI CLI home cloning:
    e:\oracle\VIS\apps\tech_st\10.1.3\oui\bin\setup.exe -nowait -clone -silent -force -nolink -waitForCompletion session:ORACLE_HOME=e:\oracle\VIS\apps\tech_st\10.1.3 oracle.as.j2ee.top:s_asInstanceName=VIS_r12_WEBOH oracle.as.j2ee.top:s_adminName=oc4jadmin oracle.as.j2ee.top:s_adminPassword=welcome ORACLE_HOME_NAME=VIS_r12_WEBOH -J-Doracle.installer.noLink=true
    Executing script in InstantiateFile:
    e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\lib\MSWin32-x86-multi-thread -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\lib -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\site\5.8.3\lib\MSWin32-x86-multi-thread -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\site\5.8.3\lib -I e:\oracle\VIS\apps\apps_st\appl\au\12.0.0\perl -I e:\oracle\VIS\apps\tech_st\10.1.3\Apache\Apache\mod_perl\site\5.8.3\lib\MSWin32-x86-multi-thread e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\txkstubcfg1013.pl
    script returned:
    .end std out.
    .end err out.
    instantiate file:
    source : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\template\adouiweboh.pl
    dest : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\ouicli.pl
    backup : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\ouicli.pl to e:\oracle\VIS\inst\apps\VIS_r12\out\ouicli0.pl
    setting permissions: 700
    instantiate file:
    source : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\template\txkstubcfg1013.pl
    dest : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\txkstubcfg1013.pl
    backup : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone\txkstubcfg1013.pl to e:\oracle\VIS\inst\apps\VIS_r12\out\txkstubcfg10130.pl
    setting permissions: 700
    instantiate file:
    source : e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\template\apachectl_sh_1013_oh.tmp
    dest : e:\oracle\VIS\apps\tech_st\10.1.3\Apache\Apache\bin\apachectl
    backup : e:\oracle\VIS\apps\tech_st\10.1.3\Apache\Apache\bin\apachectl to e:\oracle\VIS\inst\apps\VIS_r12\out\apachectl0
    setting permissions: 700
    e:\oracle\VIS\inst\apps\VIS_r12\admin\log\adcvmlog.xml does not exist. Ignore it
    [AutoConfig Error Report]
    The following report lists errors AutoConfig encountered during each
    phase of its execution. Errors are grouped by directory and phase.
    The report format is:
    <filename> <phase> <return code where appropriate>
    [APPLY PHASE]
    AutoConfig could not successfully execute the following scripts:
    Directory: e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\bin\MSWin32-x86-multi-thread\perl.exe -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\lib\MSWin32-x86-multi-thread -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\lib -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\site\5.8.3\lib\MSWin32-x86-multi-thread -I e:\oracle\VIS\apps\tech_st\10.1.3\perl\site\5.8.3\lib -I e:\oracle\VIS\apps\apps_st\appl\au\12.0.0\perl -I e:\oracle\VIS\apps\tech_st\10.1.3\Apache\Apache\mod_perl\site\5.8.3\lib\MSWin32-x86-multi-thread e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\clone
    ouicli.pl INSTE8_APPLY -1
    AutoConfig is exiting with status 1
    RC-50013: Fatal: Instantiate driver did not complete successfully.
    e:\oracle\VIS\apps\tech_st\10.1.3\appsutil\driver\regclone.drv
    I have gone through the meta link document [989752.1]. But I feel that document does not apply to me as i am not running the installation from a network storage area.
    Pl. help me.
    Thanks and regards,
    Adm.

    AN Update:
    The Oracle Universal Installer shows the following in the screen before the error appears:
    Starting Oracle Universal Installer...
    No pre-requisite checks found in oraparam.ini, no system pre-requisite checks w
    ill be executed.
    Preparing to launch Oracle Universal Installer from D:\DOCUME~1\ADMINI~1\LOCALS
    ~1\Temp\OraInstall2011-03-02_04-25-26PM. Please wait ... Oracle Universal Instal
    ler, Version 10.1.0.6.0 Production
    Copyright (C) 1999, 2007, Oracle. All rights reserved.
    ...............................................................Val: 0
    Val: 0
    Val: 0
    Val: 2
    Val: 0
    Val: 0
    Val: 0
    Val: 2
    Val: 0
    Val: 0
    Val: 0
    Val: 0
    Val: 0
    Val: 0
    Val: 2
    Val: 0
    Val: 0
    Val: 0
    Val: 0
    Val: 2
    Val: 0
    Val: 0
    path: D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2011-03-02_04-25-26PM\jre\bin
    ;.;D:\WINDOWS\system32;D:\WINDOWS;D:\StageR12\startCD\Disk1\rapidwiz\unzip\NT;D:
    \MVS\VC\bin;D:\cygwin\bin;D:\WINDOWS\system32;D:\WINDOWS;D:\WINDOWS\System32\Wbe
    m
    toload is D:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2011-03-02_04-25-26PM\Win
    dowsGPortQueries.dll
    100% Done.
    Copying files in progress (Wed Mar 02 16:25:59 IST 2011)
    .................................................Val: 0
    . 79% Done.
    Copy successful
    Setup in progress (Wed Mar 02 16:26:05 IST 2011)
    .....Oracle JAAS [Wed Mar 02 16:26:28 IST 2011]: exception: 9
    opmnctl: opmn started
    Please help me.
    Thanks and regards,
    Adm

  • Oracle9i Enterprise Edition for HP/IA64, Release 2 Install Error

    Help Me!
    Oracle9i Enterprise Edition for HP/IA64, Release 2 (v9.2.0.2)
    Install Error
    OS Version : HPUX 11.23
    Me English is insufficient.
    Until end it reads and week route it wants.
    Me the help is necessary.
    The oracle before establishing, it established the gcc and the binutil first.
    Is the different package necessary?
    Error Message(make.log)
    =============================================================
    /usr/bin/make -f ins_net_client.mk mkldflags ORACLE_HOME=/oracle/app/oracle/product/9.2.0.2
    /usr/bin/make -f ins_net_client.mk ntcontab.o ORACLE_HOME=/oracle/app/oracle/product/9.2.0.2
         (if [ "compile" = "compile" ] ; then \
         /oracle/app/oracle/product/9.2.0.2/bin/gennttab > ntcontab.c ;\
         cc +DD64 -c ntcontab.c ;\
         rm -f /oracle/app/oracle/product/9.2.0.2/lib/ntcontab.o ;\
         mv ntcontab.o /oracle/app/oracle/product/9.2.0.2/lib/ ;\
         /usr/ccs/bin/ar rv /oracle/app/oracle/product/9.2.0.2/lib/libn9.a /oracle/app/oracle/product/9.2.0.2/lib/ntcontab.o ; fi)
    cc: Couldn't open the message catalog: "/opt/ansic/lib/nls/msg/C/cc.cat".
    r - /oracle/app/oracle/product/9.2.0.2/lib/ntcontab.o
    ar: file ntcontab.o is built with mismatched data abi
    Stop.
    *** Error exit code 1
    /usr/bin/make -f ins_net_client.mk ntcontab.o ORACLE_HOME=/oracle/app/oracle/product/9.2.0.2
         (if [ "compile" = "compile" ] ; then \
         /oracle/app/oracle/product/9.2.0.2/bin/gennttab > ntcontab.c ;\
         cc +DD64 -c ntcontab.c ;\
         rm -f /oracle/app/oracle/product/9.2.0.2/lib/ntcontab.o ;\
         mv ntcontab.o /oracle/app/oracle/product/9.2.0.2/lib/ ;\
         /usr/ccs/bin/ar rv /oracle/app/oracle/product/9.2.0.2/lib/libn9.a /oracle/app/oracle/product/9.2.0.2/lib/ntcontab.o ; fi)
    cc: Couldn't open the message catalog: "/opt/ansic/lib/nls/msg/C/cc.cat".
    r - /oracle/app/oracle/product/9.2.0.2/lib/ntcontab.o
    ar: file ntcontab.o is built with mismatched data abi
    *** Error exit code 1
    Stop.
    /usr/bin/make -f ins_net_client.mk nnfgt.o ORACLE_HOME =/oracle/app/oracle/product/9.2.0.2
         (if [ "compile" = "compile" ] ; then \
         /oracle/app/oracle/product/9.2.0.2/bin/gennfgt > nnfgt.c ;\
         cc +DD64 -c nnfgt.c ;\
         rm -f /oracle/app/oracle/product/9.2.0.2/lib/nnfgt.o ;\
         mv nnfgt.o /oracle/app/oracle/product/9.2.0.2/lib/ ;\
         /usr/ccs/bin/ar rv /oracle/app/oracle/product/9.2.0.2/lib/libn9.a /oracle/app/oracle/product/9.2.0.2/lib/nnfgt.o ; fi)
    cc: Couldn't open the message catalog: "/opt/ansic/lib/nls/msg/C/cc.cat".
    ar: file nnfgt.o is built with mismatched data abi
    r - /oracle/app/oracle/product/9.2.0.2/lib/nnfgt.o
    *** Error exit code 1
    =============================================================
    Error Message(InstallActions.log)
    =============================================================
    Exception String: Error in invoking target ntcontab.o of makefile /oracle/app/oracle/product/9.2.0.2/network/lib/ins_net_client.mk
    Exception Severity: 1
    Exception handling set to prompt user with options to RETRY IGNORE
    User choice : Retry
    Exception thrown from action: make
    Exception Name: MakefileException
    Exception String: Error in invoking target ntcontab.o of makefile /oracle/app/oracle/product/9.2.0.2/network/lib/ins_net_client.mk
    Exception Severity: 1
    Exception handling set to prompt user with options to RETRY IGNORE
    =============================================================

    Hi,
    I had installed Oracle 9.2 on HP-UX 11i and the configuration assistants failed to start and it showed me the same errors. Can you tell me how did u solve u r problem.
    Thanks
    Satish

  • Can I install Oracle 8.1.7 Enterprise Edition on Windows 2000 Professional

    Sorry if this is a stupid question, but I have Windows 2000 professional edition loaded on my PC and I'm not sure what it allows. Can I load Oracle 8.1.7 Enterprise Edition of the database on this operating system, or do I need to load windows 2000 server software.
    Thanks
    Ryan

    Its a problem with oracle and pentium 4 processors actually. The solution involves renaming or deleting the symcjit.dll in the 8i installation package after you've copied the whole Cd onto your HDD!
    I've tried this and it install OK, with a few errors along the way, now I can't get the apache server working, nor on the 9i AS that I've installed as well. Let me know if you get anything useful please?
    Michael.
    [email protected]

  • XML Publisher Enterprise Edition's report errors

    I have installed XML Publisher Enterprise Edition.when i open it through explorer i can see it's different folder that also have some report as Executive,Financials,HR Manager,Sales Manager,Warehouse Managment.when i try to open reports under these folders as Employee Salary Report under HR it gives error
    "The report cannot be rendered because of an error, please contact the administrator".
    plz help me how i can view these reports.same problem in my own created report.

    Shaun,
    How did get World Sales report work? What did you put on URL? I put:
    http://Sever name:15101/xmlpserver/Sales Manager/World Sales/WorldSales.xml
    It always showed error message to me.
    Please help, Thanks.
    - Jessie

  • Error installing ODT 11_2_0_3_20 on Windows 7 Enterprise 64 with VS10/12

    Hello all,
    I'm struggling to get ODT installed on my laptop. I use Windows 7 64-bit Enterprise. I have an Oracle 11gR2 64-bit Enterprise Edition installed. I have VS 2010 and VS 2012 Ultimate installed.
    When installing, I choose:
    * "Oracle Data Access Components for Oracle Server 11.2.0.3.20"
    * My existing 11gR2 64-bit Enterprise Oracle Home directory
    * I select these components to install (Developer Tools for VS, DAC Samples, DAC Documentation for VS 10/12)
    * ODP.Net says "Already installed v. 11.2.0.3"
    * Oracle Extensions for Dot Net says "Already installed v. 11.2.0.3"
    I click Next and select both VS 2010 and VS 2012.
    The install churns for awhile until at 65% I get an error dialog which says "OLE initialization or OCX load error while registering OCX". The file it was working on at the time is "c:\oracle\product\11.2\dbhome_1\bin\oravsdbgeng11w.dll".
    I tried going to c:\windows\system32 and running regsvr32.exe to register the dll manually. When I do so, I get an error which says "The module xxx may not be compatible with the version of Windows that you're running. Check if the module is compatible with x86 (32-bit) or x64 (64-bit) version of regsvr32.exe"
    I also tried registering using the regsvr32.exe in c:\windows\syswow64 and got the same error.

    You've got Oracle Server installed on your laptop and now want to install the developer tools as well?
    What you'll need to do is this:
    1. Run the ODT installer, and let it install into a new home. It can't go in the same place as your existing Oracle directory, especially since it's a 32 bit version and your server is 64 bit. That just won't play nice at all.
    2. If it asks, choose Oracle Data Access Components for Oracle Client (you're installing a client in this case, not a server).
    You may need to do some clean up to get everything working together now, but that's the basics of what's required.

Maybe you are looking for