Oracle 11i Workflow Engine

Very silly Question.. can someone confirm if Oracle Workflow engine runs in the Admin Node and not on the Concurrent Processing node.
Regards,
Bala

Okay. How do we determine on what node the Engine is running? Is it always on concurrent processing node?Please see (How to Perform a Meaningful SMTP Telnet Test to Troubleshoot Java Mailer For Sending Email Notifications [ID 753845.1]) -- 1) Identify the concurrent tiers node where mailer runs
Please check your email.Have you sent me an email? If yes, please do again because I cannot find any messages from you.
Thanks,
Hussein

Similar Messages

  • Downloading oracle workflow engine

    Hi there;
    Does any bodyknow where I could download the oracle workflow engine from?
    Thanks in that
    Sasan Ebadian

    I have procured Workflow as a standalone product. Comes with a Client and Server Cartridge. The DBA can help install it for you. But it seems like it needs other things to work. We still have some issues that need to be fixed.

  • OWB Process/Workflow in third party Workflow engines

    Have any of you had experience using the XPDL file generated by the Process flow component of OWB to execute the Workflow in non-oracle Commercial and/or Open source Workflow engines?
    If so I'd like to hear about it. I'm attempting to do the same and think that the Oracle Workflow component is too much work.
    I appreciate your responses.

    Hi,
    Any update on it.
    Regard
    Nidhideep

  • Output post processors and workflow engines doesn't come up after cloning

    ours is a RAC+ASM+PCP -enabled
    host1 : DB+ Concurrents
    host1 : DB+ Concurrents
    host3 : WEB+FORMS+OC4J
    host4 : WEB+FORMS+OC4J
    We are suffering from an “empty entropy pool” within the JDBC driver. Basically, the driver will attempt to gather a random number from the pool, but if the pool is empty the driver will wait (sometimes indefinitely) for values to come in. In most installations, the default configuration has the pool being “filled” by numbers created through a user interface such as mouse movements. On our servers, we are typically in a “headless” configuration so the pool may not be replenished properly. I’m not sure why we are seeing this new issue, but since the random number generator is related to security, maybe a security enhancement from the OS upgrade has made this more sensitive.
    Note that QA4 is “mostly” up and running. The concurrent managers are started on both wpsun144 and wpsun154, but the output post processors and workflow engines are still having issues
    The ultimate solution is to add some form of “entropy gathering daemon” to keep the pool filled, but we will need the Unix Admin team’s help and some research to find the best solution. Apparently, in Solaris 10, there is a kernel-level “cryptographic framework” for adding/removing entropy sources.
    The workaround is to add a java option to the java command line. For Solaris this seems to work: “-Djava.security.egd=file:///dev/urandom”. This is NOT a reasonable solution since this requires modifying multiple delivered scripts/templates. I made the following changes only on wpsun144.
    First, for the context file I had to modify the “s_adjreopts” variable to add the above workaround (per doc 1066312.1).
    For adgentns this was fixed by modifying the $AU_TOP/perl/ADX/util/Java.pm file and adding the option. Here are the new lines in the file:
    if($javaCmd =~ /jre/) {
    return ("-mx256m -Djava.security.egd=file:///dev/urandom", 0);
    } else {
    return ("-Xmx512M -Djava.security.egd=file:///dev/urandom",0);
    After this change, adgentns completed successfully and both the “tnanames.ora” and “listener.ora” files were created in the $TNS_ADMIN location.
    For adgendbc, I had to manually modify the template for the script (there are 10 java command lines in the file).
    $AD_TOP/admin/template/adgendbc_ux.sh
    For txkExecSetJaznCredentials.pl, this file was modified:
    $FND_TOP/patch/115/bin/txkSetJaznCredentials.pl
    At this point, adcfgclone did finally complete successfully! Also adautocfg is now completing successfully!
    Some references:
    http://www.usn-it.de/index.php/2009/02/20/oracle-11g-jdbc-driver-hangs-blocked-by-devrandom-entropy-pool-empty/
    Oracle E-Business Suite Applications Technology Readme for Release 12.1.3 (R12.ATG_PF.B.delta.3, Patch 8919491) (Doc ID 1066312.1)
    Look for a section titled, “Attention: JDBC connections may time out during the upgrade process when random number generation is slow on machines with inadequate entropy.”
    Can some one help me on this.

    ours is a RAC+ASM+PCP -enabled
    host1 : DB+ Concurrents
    host1 : DB+ Concurrents
    host3 : WEB+FORMS+OC4J
    host4 : WEB+FORMS+OC4JPlease post the details of the application release, database version and OS.
    We are suffering from an “empty entropy pool” within the JDBC driver. Basically, the driver will attempt to gather a random number from the pool, but if the pool is empty the driver will wait (sometimes indefinitely) for values to come in. In most installations, the default configuration has the pool being “filled” by numbers created through a user interface such as mouse movements. On our servers, we are typically in a “headless” configuration so the pool may not be replenished properly. I’m not sure why we are seeing this new issue, but since the random number generator is related to security, maybe a security enhancement from the OS upgrade has made this more sensitive.
    Note that QA4 is “mostly” up and running. The concurrent managers are started on both wpsun144 and wpsun154, but the output post processors and workflow engines are still having issuesWhat is the error from the Workflow and OPP log files?
    The ultimate solution is to add some form of “entropy gathering daemon” to keep the pool filled, but we will need the Unix Admin team’s help and some research to find the best solution. Apparently, in Solaris 10, there is a kernel-level “cryptographic framework” for adding/removing entropy sources.
    The workaround is to add a java option to the java command line. For Solaris this seems to work: “-Djava.security.egd=file:///dev/urandom”. This is NOT a reasonable solution since this requires modifying multiple delivered scripts/templates. I made the following changes only on wpsun144.
    First, for the context file I had to modify the “s_adjreopts” variable to add the above workaround (per doc 1066312.1).
    For adgentns this was fixed by modifying the $AU_TOP/perl/ADX/util/Java.pm file and adding the option. Here are the new lines in the file:
    if($javaCmd =~ /jre/) {
    return ("-mx256m -Djava.security.egd=file:///dev/urandom", 0);
    } else {
    return ("-Xmx512M -Djava.security.egd=file:///dev/urandom",0);
    After this change, adgentns completed successfully and both the “tnanames.ora” and “listener.ora” files were created in the $TNS_ADMIN location.If you are on R12, please see these docs (search for "Djava.security.egd").
    Oracle E-Business Suite Applications Technology Readme for Release 12.1.3 (R12.ATG_PF.B.delta.3, Patch 8919491) [ID 1066312.1]
    Oracle E-Business Suite Release 12.1.3 Readme [ID 1080973.1]
    For adgendbc, I had to manually modify the template for the script (there are 10 java command lines in the file).
    $AD_TOP/admin/template/adgendbc_ux.sh
    For txkExecSetJaznCredentials.pl, this file was modified:
    $FND_TOP/patch/115/bin/txkSetJaznCredentials.pl
    Can some one help me on this.Are you trying to avoid manual changes? If yes, please make sure you have all the patches mentioned in the docs referenced above applied and you have all the necessary configuration/setup.
    Thanks,
    Hussein

  • Oracle 11i, Oracle 8i, Oracle 9i, and Oracle 10g

    Is Oracle 11i based on Oracle 9i or 8i backend engine? Would it be possible to upgrade Oracle 11i with Oracle 10g backend engine? When is the next release of Oracle 11i that is based on Oracle 10g?

    Hi,
    Oracle 11i is Oracle Applications 11i only which is holding applications modules hope you got it.
    Oracle 9i enterprise database has new features got utilized in Apps 11i.
    The Oracle 10g production will be launched in the month of december 2003 only.
    Thanks and Regards
    A.Riyas
    email : [email protected]
    Kuwait

  • Oracle EBS Workflow Options

    Hi,
    Anybody has ideas about Oracle EBS workflow strategy in the near future?
    I would like to customize the workflow for GL (parallel approval) in Oracle EBS (11i/R12) and need suggestions on each option.
    Options:
    1. Custom Standard Oracle Workflow
    This is a short term high effort customization solution.
    2. Utilize Oracle Approval Management (AME)
    It is available for limited modules and functions. GL module is not part of the supported modules in the near future.
    3. BPEL for Oracle Apps
    Not sure whether it is integrated with Oracle Apps. Need more information.
    I saw a doc about migrating WF processes to Oracle BPEL but it does not have any detail info. (Doc ID: Note:394387.1)
    Regards,
    Jeremy

    Jeremy,
    The suitable choice would be either oracle workflow or the BPEL but it still depends on a lot many other factors.
    The standard oracle workflow is still going to be around for many more years and is the default choice as of now.
    BPEL is more versatile, more detailed but there is no apps standard for it. So even if you develop now in BPEL, there are chances that it might not be compatible/feasible with the Fusion Apps standards which we don't know yet. And there are other factors like learning a new tech and the ones Gareth has mentioned.
    Read through http://shiv-saroj.blogspot.com/2008/03/oaf-vs-adf-with-respect-to-oracle.html
    Its not exactly what you are looking for, but will help you in decision.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Workflow engine with portal

    Hi,
    We are planning to implement Oracle workflow for Portal forms. I uderstand that workflow engine is inbuilt for all Oracle Apps (Financials, HRMS etc).
    How do I check if Oracle workflow is installed for Oracle 10g AS.
    If any one has implemented Oracle portal with workflow, please refer me some links/documentation that will help me understand how to configure oracle workflow to work with custom forms built on Oracle portal.
    Thanks,

    How to configure Oracle Workflow as external application in portal.
    Create a new External application as below :
    Name : Oracle Workflow Application
    Login URL : http://...:7778/pls/wf/wfa_html
    User Name/ID Field Name: ssousername
    Password Field Name: password
    Type of Authentication Used: BASIC_AUTHENTICATION
    http://www.oracle.com/technology/products/ias/workflow/release262/workflow_faq.html
    http://www.oracle.com/technology/products/ias/portal/point_downloads.html#workflow
    Regards,
    Ersan

  • Oracle 11i training in bangalore

    Dear Sir/Madam,
    IDS Systems Pvt Ltd is authorized to conduct Oracle application functional modules training in association with Oracle University. The courses developed by the Oracle University are aimed at delivering the comprehensive knowledge on customizing and configuring various application modules of Oracle and lab exercises and case studies will make the student to understand the concept with respect to real time scenario.
    We, at IDS, give a specialized training on this structure and make a novice into an expert Consultant. Our systematic and methodical approach by our eminent trainer helps you understand the basic concepts of financials with respect to Oracle ERP, with ease and confidence.
    MBA s / CA / CS / ICWA / MCOM/ BCom Candidates can apply for Training.
    Oracle 11i Financials modules starting from January 2008
    E Business essential for implementers, 2 Days ,
    Oracle11i General Ledger, 5Days,
    Oracle11i Payable, 4 Days,
    Oracle11i Receivables, 3 Days,
    Oracle11i Asset Management, 4 Days,
    Financial assistance will be provided up to 90% of the course fee from HDFC Bank.
    Please feel free to contact us for any of your queries.
    Thanks Regards
    Satish T S
    IDS Systems Pvt Ltd
    Bangalore
    Ph: 080-41316697, Mob: 09902988773

    Oracle Workflow is a de-supported product (except in EBS ) - so Oracle Education will not offer any training in this area. You will have to look for other private firms that can offer such training.
    HTH
    Srini

  • Can the workflow engine of APEX be opened to commom users?

    I guess the APEX must have it's own workflow engine to make APEX working correctly. Can the team consider to make it open? In some applications we need to use workflow(not very complicated), so a simple set of workflow API should be very helpful. The Oracle databaseworkflow need licenses fees and is too huge for simple applications.

    Not sure what you mean. AFAIK Apex doesn't have any "workflow engine" hidden somewhere.

  • Migrating menues from oracle 11i to R12

    Hi all,
    I have to migrate Menus from Oracle 11i to R12, this can be done using FND_LOAD, but we have to migrate it using API's. Please suggest me the API name and approach. Currently I am investigating on fnd_menus_pkg.load_row and fnd_menu_entries_pkg.load_row . Please let mw know if these are the correct API's to migrate Menus. Any help is appreciated.

    If the version of $FND_TOP/patch/115/import/afsload.lct and the table structure is identical on both instances, you may use FNDLOAD for your custom menus. However, I would not recommend using FNDLOAD or any API between different application releases.
    How To Download a Parent Menu and Submenus [ID 369421.1]
    Replicating Custom Menu [ID 839879.1]
    Thanks,
    Hussein

  • Error while running Oracle 11i OA page in JDeveloper 10g.

    Hi All,
    I have to do some customization in isupplier page. The page is working well in Oracle 11i instance. Now we are upgrading the Oracle 11i to R12. So I check out the entire project (i copied whole myprojects folder) and try to run the same project in Jdeveloper10g (I use proper jdeveloper patch). While compiling the project I got following error. Seems to be some class files are missing. But I don’t know how to fix it. Any help pls?
    •     Error(24,47): RowProvider not found in class oracle.jbo.server.ViewRowServiceImpl in class oracle.jbo.server.OAJboViewRowImpl in class oracle.apps.fnd.framework.server.OAViewRowImpl in class oracle.apps.pos.isp.server.NonPoInvSummaryVORowImpl
    •     Error(39,37): DataProcessorService not found in class oracle.jbo.server.ApplicationModuleServiceImpl in class oracle.jbo.server.OAJboApplicationModuleImpl in class oracle.apps.fnd.framework.server.OAApplicationModuleImpl in class oracle.apps.pos.isp.server.NonPoInvAMImpl
    •     Error(39,37): ServiceProvider not found in class oracle.jbo.server.ApplicationModuleServiceImpl in class oracle.jbo.server.OAJboApplicationModuleImpl in class oracle.apps.fnd.framework.server.OAApplicationModuleImpl in class oracle.apps.pos.isp.server.NonPoInvAMImpl
    •     Error(75,5): DataCriteria not found in class oracle.apps.pos.schema.server.NonPoInvLineExpert
    •     Error(49,12): method initQuery(java.lang.String, java.lang.String, java.lang.String) not found in class oracle.apps.pos.schema.server.NonPoInvNumUnqVVOImpl
    Thanks
    Chandra

    Chandra,
    May be you can ask Oracle to provide for the R12 patch for iSupplier Portal module. And then do the customizations/extensions therein.
    Regards
    Sumit

  • How to find out Oracle 11i Standard Objects

    Hi Gurus,
    There is a requirement from my client. My client is on 11i Oracle Applications. He has many customization. But somehow he failed to use naming convention and all during implementation. Now he wants us to write a program which can tell us how many custom database objects are created as a part of implementation.
    Hence in order to know this, first I need to find out what are the standard objects provided by Oracle for its 11i application so that I can write a program which will take difference (custom DB objects - standard Oracle 11i Object)  
    It will be great assistance if you let me know how to find out standard objects provided by Oracle for its 11i application?
    Looking forward to your reply.
    Thanks.
    -Sunil

    Moved to the EBS General Discussions forum
    There is no easy or programmatic way to determine the custom objects. All custom objects need to be documented and need to follow the recommended XX naming convention. If that has not been done, then someone will have to manually input each object name that is possibly custom at https://etrm.oracle.com which documents all seeded objects - if no match is found, it is most likely a custom object.
    HTH
    Srini

  • New user to Oracle 11i who needs help on creation of new fixed asset class

    Hi all,
    I am new to my Company who is using Oracle 11i. And the Company has a new class of fixed asset and a GL code has been created. But there is no link between the Fixed Asset Manager and the GL code, i.e. depreciation is not linked, additions are not captured into "Cost register", no asset number was assigned in Oracle. Please help.
    Thanks,
    Simon

    Hi.
    No, Simon, it does not work that way.
    First, be sure that the distribution line has the flag "Track as Asset" checked.
    Second, the GL Account to be used on the distribution line must be the one defined, in the FA Asset Category, as the Asset Clearing Account.
    In FA, navigate to /Setup/Asset System/Asset Categories. Following, query a Category. There you can see which account has been used as the Asset Clearing Account.
    You can use as many Asset Clearing accounts as you which, but normally, all Categories share the same account.
    Now reverse the distribution line and cretae a new one with the correct account. Post it, run the Mass Additions Process and you will see the that the addition was created.
    Hope this helps.
    Octavio

  • Problem in  Installation of oracle 11i

    Hi,
    I'm trying to install oracle 11i apps in windows server. I have done all prerequsite steps before starting intallation.
    In front end screen its saying
    compled unziping 81 of 114 at (71%)
    at one particular point the installation is not proceeding and its not writing any information in logs .
    Please let me know anyone has faced smiliar problem and how you rectified it.
    I'm hereby attaching logs
    Path Obtained by Instantiate FileD:\Stage11i\oraDB\Disk1& Disk number = 1
    Processing D:\Stage11i\oraDB\Disk1\db\driver\db920.drv file
    ================================================================
    Processing the contents of : Disk1
    Processing the driver file : D:\Stage11i\oraDB\Disk1\db\driver\Disk1.drv
    UNZIPPING THE DISK1 CONTENTS
    UNZIP used: UnZip 5.50 of 17 February 2002, by Info-ZIP. Maintained by C. Spieler. Send
    Unzip0 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh49_oem_webstage0.zip at C:\oracle\visdb\9.2.0\
    Unzip0
    .end std out.
    .end err out.
    Unzip0 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh49_oem_webstage0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip1 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh48_oem_webstage0.zip at C:\oracle\visdb\9.2.0\
    Unzip1
    Unzip1 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh48_oem_webstage0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip2 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh50_oem_webstage0.zip at C:\oracle\visdb\9.2.0\
    Unzip2
    .end std out.
    .end err out.
    Unzip2 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh50_oem_webstage0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip3 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh49_oem_webstage.zip at C:\oracle\visdb\9.2.0\
    Unzip3
    .end std out.
    .end err out.
    Unzip3 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh49_oem_webstage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip4 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh23_classes0.zip at C:\oracle\visdb\9.2.0\
    Unzip4
    .end std out.
    .end err out.
    Unzip4 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh23_classes0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip7 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh47_oem_webstage.zip at C:\oracle\visdb\9.2.0\
    Unzip7
    .end std out.
    .end err out.
    Unzip7 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh47_oem_webstage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip6 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh23_classes1.zip at C:\oracle\visdb\9.2.0\
    Unzip6
    .end std out.
    .end err out.
    Unzip6 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh23_classes1.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip9 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh69_sysman.zip at C:\oracle\visdb\9.2.0\
    Unzip9
    .end std out.
    .end err out.
    Unzip9 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh69_sysman.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip8 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh63_oui.zip at C:\oracle\visdb\9.2.0\
    Unzip8
    .end std out.
    .end err out.
    Unzip8 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh63_oui.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip11 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh13_appsutil.zip at C:\oracle\visdb\9.2.0\
    Unzip11
    .end std out.
    .end err out.
    Unzip11 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh13_appsutil.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip10 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh54_oem_webstage.zip at C:\oracle\visdb\9.2.0\
    Unzip10
    .end std out.
    .end err out.
    Unzip10 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh54_oem_webstage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip5 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh48_oem_webstage.zip at C:\oracle\visdb\9.2.0\
    Unzip5
    .end std out.
    .end err out.
    Unzip5 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh48_oem_webstage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip13 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh21_bin.zip at C:\oracle\visdb\9.2.0\
    Unzip13
    .end std out.
    .end err out.
    Unzip13 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh21_bin.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip16 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh3_.patch_storage.zip at C:\oracle\visdb\9.2.0\
    Unzip16
    .end std out.
    .end err out.
    Unzip16 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh3_.patch_storage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip14 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh45_network.zip at C:\oracle\visdb\9.2.0\
    Unzip14
    .end std out.
    .end err out.
    Unzip14 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh45_network.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip12 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh51_oem_webstage0.zip at C:\oracle\visdb\9.2.0\
    Unzip12
    .end std out.
    .end err out.
    Unzip12 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh51_oem_webstage0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip17 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh53_oem_webstage.zip at C:\oracle\visdb\9.2.0\
    Unzip17
    .end std out.
    .end err out.
    Unzip17 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh53_oem_webstage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip19 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh23_classes.zip at C:\oracle\visdb\9.2.0\
    Unzip19
    .end std out.
    .end err out.
    Unzip19 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh23_classes.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip15 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh51_oem_webstage.zip at C:\oracle\visdb\9.2.0\
    Unzip15
    .end std out.
    .end err out.
    Unzip15 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh51_oem_webstage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip18 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh11_.patch_storage.zip at C:\oracle\visdb\9.2.0\
    Unzip18
    .end std out.
    .end err out.
    Unzip18 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh11_.patch_storage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip20 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh12_appsoui.zip at C:\oracle\visdb\9.2.0\
    Unzip20
    .end std out.
    .end err out.
    Unzip20 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh12_appsoui.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip22 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh22_classes.zip at C:\oracle\visdb\9.2.0\
    Unzip22
    .end std out.
    .end err out.
    Unzip22 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh22_classes.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip25 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh22_classes0.zip at C:\oracle\visdb\9.2.0\
    Unzip25
    .end std out.
    .end err out.
    Unzip25 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh22_classes0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip21 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh54_oem_webstage0.zip at C:\oracle\visdb\9.2.0\
    Unzip21
    .end std out.
    .end err out.
    Unzip21 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh54_oem_webstage0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip26 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh52_oem_webstage1.zip at C:\oracle\visdb\9.2.0\
    Unzip26
    .end std out.
    .end err out.
    Unzip26 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh52_oem_webstage1.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip27 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh1_.patch_storage.zip at C:\oracle\visdb\9.2.0\
    Unzip27
    .end std out.
    .end err out.
    Unzip27 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh1_.patch_storage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip23 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh52_oem_webstage.zip at C:\oracle\visdb\9.2.0\
    Unzip23
    .end std out.
    .end err out.
    Unzip23 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh52_oem_webstage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip24 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh29_demo.zip at C:\oracle\visdb\9.2.0\
    Unzip24
    .end std out.
    .end err out.
    Unzip24 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh29_demo.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip28 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh53_oem_webstage0.zip at C:\oracle\visdb\9.2.0\
    Unzip28
    .end std out.
    .end err out.
    Unzip28 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh53_oem_webstage0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip29 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh46_oci.zip at C:\oracle\visdb\9.2.0\
    Unzip29
    .end std out.
    .end err out.
    Unzip29 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh46_oci.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip32 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh13_appsutil0.zip at C:\oracle\visdb\9.2.0\
    Unzip32
    .end std out.
    .end err out.
    Unzip32 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh13_appsutil0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip33 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh62_ord.zip at C:\oracle\visdb\9.2.0\
    Unzip33
    .end std out.
    .end err out.
    Unzip33 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh62_ord.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip30 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh5_.patch_storage.zip at C:\oracle\visdb\9.2.0\
    Unzip30
    .end std out.
    .end err out.
    Unzip30 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh5_.patch_storage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip34 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh22_classes1.zip at C:\oracle\visdb\9.2.0\
    Unzip34
    .end std out.
    .end err out.
    Unzip34 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh22_classes1.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip35 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh52_oem_webstage0.zip at C:\oracle\visdb\9.2.0\
    Unzip35
    .end std out.
    .end err out.
    Unzip35 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh52_oem_webstage0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip36 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh65_rdbms.zip at C:\oracle\visdb\9.2.0\
    Unzip36
    .end std out.
    .end err out.
    Unzip36 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh65_rdbms.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip37 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh19_bin.zip at C:\oracle\visdb\9.2.0\
    Unzip37
    .end std out.
    .end err out.
    Unzip37 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh19_bin.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip38 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh42_jre.zip at C:\oracle\visdb\9.2.0\
    Unzip38
    .end std out.
    .end err out.
    Unzip38 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh42_jre.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip39 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh64_rdbms.zip at C:\oracle\visdb\9.2.0\
    Unzip39
    .end std out.
    .end err out.
    Unzip39 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh64_rdbms.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip41 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh32_javavm.zip at C:\oracle\visdb\9.2.0\
    Unzip41
    .end std out.
    .end err out.
    Unzip41 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh32_javavm.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip42 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh25_ctx.zip at C:\oracle\visdb\9.2.0\
    Unzip42
    .end std out.
    .end err out.
    Unzip42 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh25_ctx.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip43 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh20_bin0.zip at C:\oracle\visdb\9.2.0\
    Unzip43
    .end std out.
    .end err out.
    Unzip43 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh20_bin0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip40 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh61_Omwb.zip at C:\oracle\visdb\9.2.0\
    Unzip40
    .end std out.
    .end err out.
    Unzip40 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh61_Omwb.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip31 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh50_oem_webstage.zip at C:\oracle\visdb\9.2.0\
    Unzip31
    .end std out.
    .end err out.
    Unzip31 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh50_oem_webstage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip45 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh70_ultrasearch.zip at C:\oracle\visdb\9.2.0\
    Unzip45
    .end std out.
    .end err out.
    Unzip45 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh70_ultrasearch.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip46 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh7_.patch_storage.zip at C:\oracle\visdb\9.2.0\
    Unzip46
    .end std out.
    .end err out.
    Unzip46 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh7_.patch_storage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip44 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh20_bin.zip at C:\oracle\visdb\9.2.0\
    Unzip44
    .end std out.
    .end err out.
    Unzip44 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk1\db\stage\dboh20_bin.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip47 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh27_ctx.zip at C:\oracle\visdb\9.2.0\
    Unzip48 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh24_classes.zip at C:\oracle\visdb\9.2.0\
    Unzip49 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh28_demo.zip at C:\oracle\visdb\9.2.0\
    Unzip50 - Start of native unzipping D:\Stage11i\oraDB\Disk1\db\stage\dboh36_javavm.zip at C:\oracle\visdb\9.2.0\
    AutoConfig is exiting with status 0
    Processing disk file : disk.label in D:\Stage11i\oraDB\Disk2
    Checking the content :disk.label
    All contents are valid.....
    =============================================================
    Processing the contents of : Disk2
    Processing the driver file : D:\Stage11i\oraDB\Disk2\db\driver\Disk2.drv
    UNZIPPING THE DISK2 CONTENTS
    Unzip51 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh16_assistants.zip at C:\oracle\visdb\9.2.0\
    Unzip51
    .end std out.
    .end err out.
    Unzip51 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh16_assistants.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip52 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh17_assistants.zip at C:\oracle\visdb\9.2.0\
    Unzip52
    .end std out.
    .end err out.
    Unzip52 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh17_assistants.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip55 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh14_assistants.zip at C:\oracle\visdb\9.2.0\
    Unzip55
    .end std out.
    .end err out.
    Unzip55 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh14_assistants.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip53 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh51_oem_webstage1.zip at C:\oracle\visdb\9.2.0\
    Unzip53
    .end std out.
    .end err out.
    Unzip53 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh51_oem_webstage1.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip56 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh4_.patch_storage.zip at C:\oracle\visdb\9.2.0\
    Unzip56
    .end std out.
    .end err out.
    Unzip56 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh4_.patch_storage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip57 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh2_.patch_storage.zip at C:\oracle\visdb\9.2.0\
    Unzip57
    .end std out.
    .end err out.
    Unzip57 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh2_.patch_storage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip54 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh50_oem_webstage1.zip at C:\oracle\visdb\9.2.0\
    Unzip54
    .end std out.
    .end err out.
    Unzip54 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh50_oem_webstage1.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip58 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh8_.patch_storage.zip at C:\oracle\visdb\9.2.0\
    Unzip58
    .end std out.
    .end err out.
    Unzip58 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh8_.patch_storage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip59 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh6_.patch_storage.zip at C:\oracle\visdb\9.2.0\
    Unzip59
    .end std out.
    .end err out.
    Unzip59 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh6_.patch_storage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip60 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh18_bin.zip at C:\oracle\visdb\9.2.0\
    Unzip60
    .end std out.
    .end err out.
    Unzip60 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh18_bin.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip61 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh0_.patch_storage.zip at C:\oracle\visdb\9.2.0\
    Unzip61
    .end std out.
    .end err out.
    Unzip61 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh0_.patch_storage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip62 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh40_jlib.zip at C:\oracle\visdb\9.2.0\
    Unzip62
    .end std out.
    .end err out.
    Unzip62 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh40_jlib.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip64 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh26_ctx.zip at C:\oracle\visdb\9.2.0\
    Unzip64
    .end std out.
    .end err out.
    Unzip64 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh26_ctx.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip65 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh10_.patch_storage.zip at C:\oracle\visdb\9.2.0\
    Unzip65
    .end std out.
    .end err out.
    Unzip65 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh10_.patch_storage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip67 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh65_rdbms0.zip at C:\oracle\visdb\9.2.0\
    Unzip67
    .end std out.
    .end err out.
    Unzip67 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh65_rdbms0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip68 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh38_jlib.zip at C:\oracle\visdb\9.2.0\
    Unzip68
    .end std out.
    .end err out.
    Unzip68 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh38_jlib.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip70 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh57_olap.zip at C:\oracle\visdb\9.2.0\
    Unzip70
    .end std out.
    .end err out.
    Unzip70 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh57_olap.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip66 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh47_oem_webstage0.zip at C:\oracle\visdb\9.2.0\
    Unzip66
    .end std out.
    .end err out.
    Unzip66 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh47_oem_webstage0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip71 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh45_network0.zip at C:\oracle\visdb\9.2.0\
    Unzip71
    .end std out.
    .end err out.
    Unzip71 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh45_network0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip63 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh55_oem_webstage.zip at C:\oracle\visdb\9.2.0\
    Unzip63
    .end std out.
    .end err out.
    Unzip63 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh55_oem_webstage.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip69 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh66_rdbms.zip at C:\oracle\visdb\9.2.0\
    Unzip69
    .end std out.
    .end err out.
    Unzip69 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh66_rdbms.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip72 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh64_rdbms0.zip at C:\oracle\visdb\9.2.0\
    Unzip72
    .end std out.
    .end err out.
    Unzip72 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh64_rdbms0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip76 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh52_oem_webstage2.zip at C:\oracle\visdb\9.2.0\
    Unzip76
    .end std out.
    .end err out.
    Unzip76 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh52_oem_webstage2.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip75 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh37_javavm.zip at C:\oracle\visdb\9.2.0\
    Unzip75
    .end std out.
    .end err out.
    Unzip75 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh37_javavm.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip74 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh29_demo0.zip at C:\oracle\visdb\9.2.0\
    Unzip74
    .end std out.
    .end err out.
    Unzip74 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh29_demo0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip78 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh19_bin0.zip at C:\oracle\visdb\9.2.0\
    Unzip78
    .end std out.
    .end err out.
    Unzip78 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh19_bin0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip73 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh21_bin0.zip at C:\oracle\visdb\9.2.0\
    Unzip73
    .end std out.
    .end err out.
    Unzip73 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh21_bin0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip80 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh68_sysman.zip at C:\oracle\visdb\9.2.0\
    Unzip79 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh48_oem_webstage1.zip at C:\oracle\visdb\9.2.0\
    Unzip77 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh46_oci0.zip at C:\oracle\visdb\9.2.0\
    Unzip81 - Start of native unzipping D:\Stage11i\oraDB\Disk2\db\stage\dboh35_javavm.zip at C:\oracle\visdb\9.2.0\
    Unzip77
    .end std out.
    .end err out.
    Unzip77 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh46_oci0.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip81
    .end std out.
    .end err out.
    Unzip81 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh35_javavm.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..Unzip80
    .end std out.
    .end err out.
    Unzip80 - Completed native unzipping unzip -qn D:\Stage11i\oraDB\Disk2\db\stage\dboh68_sysman.zip -d C:\oracle\visdb\9.2.0\
    Thread exiting ..AutoConfig is exiting with status 0
    Processing disk file : disk.label in D:\Stage11i\oraDB\Disk3
    Checking the content :disk.label
    All contents are valid.....
    =============================================================
    Processing the contents of : Disk3
    Processing the driver file : D:\Stage11i\oraDB\Disk3\db\driver\Disk3.drv
    UNZIPPING THE DISK3 CONTENTS
    Not proceeding further.
    Regards

    It's rare to get apps assistance in the database forum. You might have better luck going to 'http://forums.oracle.com' and asking in the appropriate foum. Look for
    E-Business Suite
    Applications Technology
        * •  XML Publisher
        * •  Managing Oracle Applications
        * •  OA Framework
        * •  Install and Upgrade <-------
        * •  More...

  • Help needed in installing Oracle Elastic Charging Engine

    Dears,
    I would like to install Oracle Elastic Charging Engine (ECE) but I could not find any relevant documentation.
    Please help out on this.
    Regards,
    Chidhambaram

    Duplicate Post:
    Re: Installing Oracle appliaction on Red Hat Linux 9

Maybe you are looking for

  • My phone wont sync songs

    I recently bought a Mac. I transferred all my old iTunes songs onto a hard drive & moved them to my Mac. I bought more songs on the Mac. When I plugged my iPhone in to sync it didn't work. How do I get the new songs onto my phone? I just downloaded a

  • 3D transformation in Java 2D?

    I don't want to use Java 3D/JOGL for my static generated images as those APIs / components have platform dependent modules. How can I generate 3D images with Java 2D? (E.g. a 3D object correctly displayed with Java 2D)?

  • Luna Exception,class com.chrysalisits.crypto.LunaException message = LunaSe

    Dear Friends, I am getting the following exception while trying to generate GUID. Could you please help me on this. Stack Trace: com.chrysalisits.crypto.LunaException: LunaSession: slot uninitialized      at com.chrysalisits.crypto.LunaSession.OpenNe

  • What are the 4 buttons on my iPad?

    My iPad is dead, will not recharge  I know the sleep and home buttons, but what are the two on the side?

  • Unable to create a production order due to error: "CX_SLD_API_EXCEPTION"

    Hello, I am a student and fairly new to SAP. I could convert planned order to Production order (Using transaction MD04). While trying to release the order, and saving the change, I am getting a runtime error. Surprisingly, same exercise was performed