"Import Failed" when trying to run a import (Integration) script from FDM

Backgroud about the Issue : My source system for data is Oracle Orion and the Destination is HFM.Trying to import data fom orion to HFM through FDM via ODBC connectivity.
Modified the "Integration Script Example" in fdm_admin guide and with this i am able to import data from the Orion to the FDM staging table "tDataSegX" however i am not abel to see any data in the FDM (Import Module) and thats when i get this error "Import Failed".
Posisble casue according to my knowledge : My Import script only includes code to 1.Connect to ODBC data source 2. copies all the values from the Source table to the staging table.
I am not sure if i am missing some attributes in the script ??!!
can some one help me in checking if my imoport scritp is correct ??!!!
Here is my script
Function Import_int(strLoc, lngCatKey, dblPerKey, strWorkTableName)
Dim objSS 'ADODB.Connection
Dim strOra 'Ora string
Dim rs ' As New ADODB.Recordset
Dim rsAppend 'tTB table append rs object
Set cnSS = CreateObject("ADODB.Connection")
Set rs = CreateObject("ADODB.Recordset")
Set rsAppend = DW.DataAccess.farsTableAppend("TDATASEG7")
Dim strconn
strconn="Provider=msdaora;Data Source=<<Data Source Name>>;User Id=<<Username>>;Password=<<Password>>;"
cnSS.open strConn
strOra = "Select * "
strOra = strOra & "FROM <<Oracle View>>"
'Get data
rs.Open strOra, cnSS
If rs.bof And rs.eof Then
RES.PlngActionType = 2
RES.PstrActionValue = "No Records to load!"
Exit Function
End If
'Loop through records and append to tTB table in location's DB
If Not rs.bof And Not rs.eof Then
Do While Not rs.eof
rsAppend.AddNew
rsAppend.Fields("PartitionKey") = RES.PlngLocKey
rsAppend.Fields("CatKey") = RES.PlngCatKey
rsAppend.Fields("PeriodKey") = RES.PdtePerKey
rsAppend.Fields("DataView") = "YTD"
rsAppend.Fields("CalcAcctType") = 9
'write conditions to eliminate null
rsAppend.Fields("Amount") = rs.fields("YTD").Value
rsAppend.Fields("Desc1") = test 'rs.fields("txtAcctDes").Value
rsAppend.Fields("Account") = rs.fields("MAIN_AC_CODE").Value
rsAppend.Fields("Entity") = rs.fields("COMPANY_CODE").Value
rs.movenext
Loop
End If
'Records loaded
RES.PlngActionType = 6
RES.PstrActionValue = "ODBC Import successful!"
'Assign Return value
SQLIntegration = True
rs.close
End Function

HI,
I first changed the table name to "strWorkTableName" and tried executing only the script from the Workbench client and got error as bellow
Financial Data Management Workbench
-2147467259 - Data access error.
At Line: 20
OK
For some reason i am not ok with running the code in the workbench client (even for checking the syntax) because for the reason that i am not sure if all the parameter required by the funciton will be passed by donig just "Run script."So even with this error in the Work bench client i proceded to the Workflow module in the web interface and run the import and here is what i have now.
Error: An error occurred importing the file.
Detail: Invalid procedure call or argument
here is the error message from the "View Erro Log"
ERROR:
Code............................................. 5
Description...................................... Invalid procedure call or argument
Procedure........................................ clsImpProcessMgr.fExecuteImpScript
Component........................................ upsWObjectsDM
Version.......................................... 1112
Thread........................................... 15676
IDENTIFICATION:
User............................................. admin
Computer Name.................................... <<ComputerName>>
App Name......................................... <<ApplicationName>>
Client App....................................... WebClient
CONNECTION:
Provider......................................... ORAOLEDB.ORACLE
Data Server......................................
Database Name.................................... HYPTDB
Trusted Connect.................................. False
Connect Status.. Connection Open
GLOBALS:
Location......................................... ORION
Location ID...................................... 750
Location Seg..................................... 4
Category......................................... WLCAT
Category ID...................................... 12
Period........................................... Feb - 2011
Period ID........................................ 2/28/2011
POV Local........................................ False
Language......................................... 1033
User Level....................................... 1
All Partitions................................... True
Is Auditor....................................... False
** Begin FDM Runtime Error Log Entry [2011-03-21 14:43:42] **
ERROR:
Code............................................. 5
Description...................................... Invalid procedure call or argument
Procedure........................................ clsImpProcessMgr.fLoadAndProcessFile
Component........................................ upsWObjectsDM
Version.......................................... 1112
Thread........................................... 15676
IDENTIFICATION:
User............................................. admin
Computer Name.................................... <<ComputerName>>
App Name......................................... <<ApplicationName>>
Client App....................................... WebClient
CONNECTION:
Provider......................................... ORAOLEDB.ORACLE
Data Server......................................
Database Name.................................... HYPTDB
Trusted Connect.................................. False
Connect Status.. Connection Open
GLOBALS:
Location......................................... ORION
Location ID...................................... 750
Location Seg..................................... 4
Category......................................... WLCAT
Category ID...................................... 12
Period........................................... Feb - 2011
Period ID........................................ 2/28/2011
POV Local........................................ False
Language......................................... 1033
User Level....................................... 1
All Partitions................................... True
Is Auditor....................................... False
** Begin FDM Runtime Error Log Entry [2011-03-21 14:44:05] **
ERROR:
Code............................................. 70
Description...................................... Permission denied
Procedure........................................ clsArchiveMgr.fArchiveSupercededDelete
Component........................................ upsWObjectsDM
Version.......................................... 1112
Thread........................................... 7180
IDENTIFICATION:
User............................................. admin
Computer Name.................................... <<ComputerName>>
App Name......................................... <<ApplicationName>>
Client App....................................... WebClient
CONNECTION:
Provider......................................... ORAOLEDB.ORACLE
Data Server......................................
Database Name.................................... HYPTDB
Trusted Connect.................................. False
Connect Status.. Connection Open
GLOBALS:
Location......................................... SAMPLE
Location ID...................................... 748
Location Seg..................................... 2
Category......................................... WLCAT
Category ID...................................... 12
Period........................................... Feb - 2011
Period ID........................................ 2/28/2011
POV Local........................................ False
Language......................................... 1033
User Level....................................... 1
All Partitions................................... True
Is Auditor....................................... False
** Begin FDM Runtime Error Log Entry [2011-03-21 14:44:05] **
ERROR:
Code............................................. 70
Description...................................... Permission denied
Procedure........................................ clsArchiveMgr.fArchiveSupercededFlag
Component........................................ upsWObjectsDM
Version.......................................... 1112
Thread........................................... 7180
IDENTIFICATION:
User............................................. admin
Computer Name.................................... <<ComputerName>>
App Name......................................... <<ApplicationName>>
Client App....................................... WebClient
CONNECTION:
Provider......................................... ORAOLEDB.ORACLE
Data Server......................................
Database Name.................................... HYPTDB
Trusted Connect.................................. False
Connect Status.. Connection Open
GLOBALS:
Location......................................... SAMPLE
Location ID...................................... 748
Location Seg..................................... 2
Category......................................... WLCAT
Category ID...................................... 12
Period........................................... Feb - 2011
Period ID........................................ 2/28/2011
POV Local........................................ False
Language......................................... 1033
User Level....................................... 1
All Partitions................................... True
Is Auditor....................................... False
** Begin FDM Runtime Error Log Entry [2011-03-21 14:44:05] **
ERROR:
Code............................................. 70
Description...................................... Permission denied
Procedure........................................ clsImpProcessMgr.fClearData
Component........................................ upsWObjectsDM
Version.......................................... 1112
Thread........................................... 7180
IDENTIFICATION:
User............................................. admin
Computer Name.................................... <<ComputerName>>
App Name......................................... <<ApplicationName>>
Client App....................................... WebClient
CONNECTION:
Provider......................................... ORAOLEDB.ORACLE
Data Server......................................
Database Name.................................... HYPTDB
Trusted Connect.................................. False
Connect Status.. Connection Open
GLOBALS:
Location......................................... SAMPLE
Location ID...................................... 748
Location Seg..................................... 2
Category......................................... WLCAT
Category ID...................................... 12
Period........................................... Feb - 2011
Period ID........................................ 2/28/2011
POV Local........................................ False
Language......................................... 1033
User Level....................................... 1
All Partitions................................... True
Is Auditor....................................... False
** Begin FDM Runtime Error Log Entry [2011-03-21 14:44:05] **
ERROR:
Code............................................. 70
Description...................................... Permission denied
Procedure........................................ clsImpProcessMgr.fLoadAndProcessFile
Component........................................ upsWObjectsDM
Version.......................................... 1112
Thread........................................... 7180
IDENTIFICATION:
User............................................. admin
Computer Name.................................... <<ComputerName>>
App Name......................................... <<ApplicationName>>
Client App....................................... WebClient
CONNECTION:
Provider......................................... ORAOLEDB.ORACLE
Data Server......................................
Database Name.................................... HYPTDB
Trusted Connect.................................. False
Connect Status.. Connection Open
GLOBALS:
Location......................................... SAMPLE
Location ID...................................... 748
Location Seg..................................... 2
Category......................................... WLCAT
Category ID...................................... 12
Period........................................... Feb - 2011
Period ID........................................ 2/28/2011
POV Local........................................ False
Language......................................... 1033
User Level....................................... 1
All Partitions................................... True
Is Auditor....................................... False

Similar Messages

  • Getting "java.lang.NullPointerException" error message when trying to run an OATS OpenScript file from Eclipse to Create a record in Oracle EBS

    Hello,
    I'm trying to run a simple OpenScript script in Eclipse that creates a record (a Supplier in this case) in Oracle E-Business Suite. So I copied the the script file from OpenScript and created it as a Class in Eclipse.  Then I created a main class to call the methods within the script class but no matter what method I call (initialize, run or finalize) I'm getting the java.lang.NullPointerException message. The error doesn't seem to be related with any specific line in the script but with the way that I'm calling it.
    Should I call the OpenScript class from my main class in a different way? (see my examples below)
    BTW, all external .jar files coming with OATS have been added to my project in Eclipse.
    1) Here's the main class I created to call the OpenScript method (Eclipse auto-corrected my main class adding a Try and Catch around the method call):
    public class Test {
        public static void main(String[] args) {
            nvscript nvs = new nvscript();
            try {
                nvs.initialize();
            } catch (Exception e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
    2) Here's the script from OpenScript (the actual script has more steps but I'm just using the first one for a proof of concept):
    import oracle.oats.scripting.modules.basic.api.*;
    import oracle.oats.scripting.modules.browser.api.*;
    import oracle.oats.scripting.modules.functionalTest.api.*;
    import oracle.oats.scripting.modules.utilities.api.*;
    import oracle.oats.scripting.modules.utilities.api.sql.*;
    import oracle.oats.scripting.modules.utilities.api.xml.*;
    import oracle.oats.scripting.modules.utilities.api.file.*;
    import oracle.oats.scripting.modules.webdom.api.*;
    import oracle.oats.scripting.modules.formsFT.api.*;
    import oracle.oats.scripting.modules.applet.api.*;
    public class nvscript extends IteratingVUserScript {
        @ScriptService oracle.oats.scripting.modules.utilities.api.UtilitiesService utilities;
        @ScriptService oracle.oats.scripting.modules.browser.api.BrowserService browser;
        @ScriptService oracle.oats.scripting.modules.functionalTest.api.FunctionalTestService ft;
        @ScriptService oracle.oats.scripting.modules.webdom.api.WebDomService web;
        @ScriptService oracle.oats.scripting.modules.applet.api.AppletService applet;
        @ScriptService oracle.oats.scripting.modules.formsFT.api.FormsService forms;
        public void initialize() throws Exception {
            this.getSettings().set("formsft.useformsonly",true);
            browser.launch();
        public void run() throws Exception {
            beginStep(
                    "[1] E-Business Suite Home Page Redirect (/ebs12cloud.winshuttle.com:8000/)",
                    0);
                web.window(2, "/web:window[@index='0' or @title='about:blank']")
                        .navigate("http://ebs12.xxxxxxx.com:8000/");
                web.window(4, "/web:window[@index='0' or @title='Login']")
                        .waitForPage(null);
                    think(4.969);
                web.textBox(
                        7,
                        "/web:window[@index='0' or @title='Login']/web:document[@index='0']/web:form[@id='DefaultFormName' or @name='DefaultFormName' or @index='0']/web:input_text[@id='usernameField' or @name='usernameField' or @index='0']")
                        .setText("winshuttle_user");
                    think(2.0);
                web.textBox(
                        8,
                        "/web:window[@index='0' or @title='Login']/web:document[@index='0']/web:form[@id='DefaultFormName' or @name='DefaultFormName' or @index='0']/web:input_password[@id='passwordField' or @name='passwordField' or @index='0']")
                        .click();
                    think(1.109);
                web.textBox(
                        9,
                        "/web:window[@index='0' or @title='Login']/web:document[@index='0']/web:form[@id='DefaultFormName' or @name='DefaultFormName' or @index='0']/web:input_password[@id='passwordField' or @name='passwordField' or @index='0']")
                        .setPassword(deobfuscate("kjhkjhkj=="));
                    think(1.516);
                web.button(
                        10,
                        "/web:window[@index='0' or @title='Login']/web:document[@index='0']/web:form[@id='DefaultFormName' or @name='DefaultFormName' or @index='0']/web:button[@id='SubmitButton' or @value='Login' or @index='0']")
                        .click();
            endStep();
        public void finish() throws Exception {       
    3) Here's the error messages I'm getting based on the method I call from my main class:
    3.a) when calling Initialize():
    java.lang.NullPointerException
        at oracle.oats.scripting.modules.basic.api.IteratingVUserScript.getSettings(IteratingVUserScript.java:723)
        at nvscript.initialize(nvscript.java:22)
        at Test.main(Test.java:9)
    3 b) when calling Run():
    java.lang.NullPointerException
        at oracle.oats.scripting.modules.basic.api.IteratingVUserScript.beginStep(IteratingVUserScript.java:260)
        at nvscript.run(nvscript.java:30)
        at Test.main(Test.java:9)
    Any help and/or constructive comment will be appreciated it.
    Thanks.
    Federico.

    UPDATE
    Compiling from command line I found out that the class definition for oracle.oats.scripting.modules.basic.api.IteratingVUserScript is missing. Do you know what .jar file contains this class?
    Thanks.
    Fede.

  • How do I solve "import failed" when trying to import folders to the organizer?

    When I try to import folders to the organizer I get an "import failed" message.  Then it says that files or folders selected did not contain any supported file types or they are already in the catalog.  I don't think it can be the latter because I just installed it today and haven't been able to import any files or folders.  Can anyone give me troubleshooting ideas; I can't find any in the help menus.  Thanks a bunch!!

    The JPG data might be corrupted just enough for PSE to choke on the image, although other programs can open the image OK.  Try opening one of the images in XnView, for instance, and saving that image; which will re-write the JPG data correctly.  Then see if Organizer can import it.
    Ken

  • Authentication to agent workstation failed when trying to run a test in Oracle Test Manager

    I have the complete version of OATS installed on my local machine. I have the OracleATSHelper, OracleATSServer and OracleATSAgent services running.
    In OTM when I go to run an openscript test I select the system, type the version number and hit run and get a "Authentication to agent workstation failed" error in the summary field.
    It worked before but I cant figure out why it isnt working anymore.
    Can anyone help?

    ATS Version: 12.3.0.1.0 build 376
    I am getting the same error when trying to execute a script from OTM - "Authentication to agent workstation failed".
    I have the OTM server on a remote (server) machine and the Oracle Agent is running on my laptop / workstation. I've tried all I have seen on this thread, but no progress. The manager is now in manual mode and the console only provides the following output:
    D:\OracleATS\agentmanager\bin>d:\OracleATS\agentmanager\bin\AgentManagerService.exe -c  AgentManagerService.conf
    wrapper  | --> Wrapper Started as Console
    wrapper  | Launching a JVM...
    jvm 1    | Wrapper (Version 3.0.3)
    jvm 1    |
    One different thing, maybe, I see is that the agentmanager_auth.log is empty always.
    Also, on the server, I've added this SYSTEM successfully, i.e.the Testing of the SYSTEM added in OTM always gives the success message "The system specified can be successfully accessed by the Oracle Test Manager server."  . In fact it does this even when I provide an incorrect password!    

  • Mavericks crashes finder us in all adobe cc products when trying to save or import from finder. Is there an update to fix this yet???

    Mavericks crashes finder us in all adobe cc products when trying to save or import from finder. Is there an update to fix this yet???

    The first attempt is a FAIL. It did NOT fix my issues:
    Still working on 1% efficiency mode. CRIPES!!!!

  • HT1349 When trying to run itunes on my PC, get this message. This application has failed to start because MSVCR80.dll was not found.

    When trying to run itunes on my PC, I get this message. This application has failed to start because MSVCR80.dll was not found. Do you have any clues on a solution?

    Welcome to Apple Support Communities
    A solution is listed in the thread below.
    It probably and other similar discussions appear in the More Like This window to the right of your question. The ones with a green check mark are questioned marked 'answered' by the original poster.
    https://discussions.apple.com/message/24610401#24610401

  • When trying to run CS5 (64 bit) on Windows 7 get error failed to initlialize COOLTYPE ?

    Hello,
    When trying to run CS5 (64 bit) on Windows 7 get error failed to initlialize COOLTYPE ?
    Any ideas ?
    I tried re-installing CS5 Master collection but that failed as well.
    Running out of ideas
    Richard

    I have the same problem, and while I can 'fix' it with the approach described here, I have to 'fix' it that way EVERY TIME I launch itunes.  I suppose the lousy support for mainstream computers is apple's way of saying, 'well of course you can't use your phone, you're not living in a (TM) apple home (TM) please sell your existing home and purchase one from apple if you want your phone to work.'  I never would have imagined that as a computer programmer it would be a multi-hour/failed installation process to get iTunes and the iPhone4 working properly.  What a joke.

  • OPatch fails when trying to update to 7252496 oci.dll copy fails

    I am new to Oracle and am trying to update using OPatch. the updates fails when trying to copy oci.dll.
    Here is my log, if anyone can point me in the right direction that would be awesome.
    Thanks
    SEVERE:OPatch invoked as follows: 'apply '
    INFO:
    Oracle Home : c:\oracle\ora102
    Central Inventory : C:\Program Files\Oracle\Inventory
    from : n/a
    OPatch version : 10.2.0.3.0
    OUI version : 10.2.0.2.0
    OUI location : c:\oracle\ora102\oui
    Log file location : c:\oracle\ora102\cfgtoollogs\opatch\opatch2008-08-18_08-24-00AM.log
    INFO:Starting ApplySession at Mon Aug 18 08:24:03 EDT 2008
    INFO:Starting Apply Session at Mon Aug 18 08:24:03 EDT 2008
    INFO:ApplySession applying interim patch '7252496' to OH 'c:\oracle\ora102'
    INFO:Starting to apply patch to local system at Mon Aug 18 08:24:03 EDT 2008
    INFO:OPatch detected ARU_ID/Platform_ID as 912
    INFO:ApplySession: Optional component(s) [ oracle.rdbms.dv, 10.2.0.3.0 ] , [ oracle.ntoledb.odp_net_2, 10.2.0.2.20 ] , [ oracle.oo4o, 10.2.0.2.20 ] , [ oracle.ntoramts, 10.2.0.3.0 ] , [ oracle.has.crs, 10.2.0.3.0 ] , [ oracle.ldap.esm, 10.2.0.1.0 ] , [ oracle.precomp.lang, 10.2.0.3.0 ] , [ oracle.isearch.is_common, 10.2.0.3.0 ] , [ oracle.rdbms.dv.oc4j, 10.2.0.3.0 ] , [ oracle.rdbms.ic, 10.2.0.3.0 ] not present in the Oracle Home or a higher version is found.
    INFO:
    Subset patches: 5556081, 5557962
    The fixes for Patch 5556081, 5557962 are included in the patch currently being installed (7252496). If you continue, they will be rolled back and the new patch (7252496) will be installed.
    INFO:
    OPatch detected non-cluster Oracle Home from the inventory and will patch the local system only.
    INFO:
    Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
    (Oracle Home = 'c:\oracle\ora102')
    INFO:Is the local system ready for patching?
    Do you want to proceed? y
    INFO:Start to wait for user-input at Mon Aug 18 08:24:06 EDT 2008
    INFO:Finish waiting for user-input at Mon Aug 18 08:27:01 EDT 2008
    INFO:User Responded with: Y
    INFO:Start saving patch at Mon Aug 18 08:27:01 EDT 2008
    INFO:Finish saving patch at Mon Aug 18 08:27:32 EDT 2008
    INFO:Start backing up system for restore at Mon Aug 18 08:27:32 EDT 2008
    INFO:Backing up files and inventory (not for auto-rollback) for the Oracle Home
    INFO:Backing up files affected by the patch '7252496' for restore. This might take a while...
    INFO:Finish backing up system for restore at Mon Aug 18 08:28:39 EDT 2008
    INFO:Backing up files affected by the patch '5556081' for restore. This might take a while...
    INFO:Backing up files affected by the patch '5557962' for restore. This might take a while...
    INFO:ApplySession rolling back interim patch '5556081' from OH 'c:\oracle\ora102'
    INFO:Start autoRollback of patch 5556081 at Mon Aug 18 08:28:44 EDT 2008
    INFO:Start the Rollback preScript at Mon Aug 18 08:28:44 EDT 2008
    INFO:Finish the Rollback preScript at Mon Aug 18 08:28:44 EDT 2008
    INFO:Start modifying the system at Mon Aug 18 08:28:44 EDT 2008
    INFO:
    Patching component oracle.sysman.console.db, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\sysman\admin\scripts\SecureGenKeystore.pm"
    INFO:Finish modifying the system at Mon Aug 18 08:28:44 EDT 2008
    INFO:RollbackSession removing interim patch '5556081' from inventory
    INFO:Start removing patch from inventory at Mon Aug 18 08:28:44 EDT 2008
    INFO:Finish removing patch from inventory at Mon Aug 18 08:28:48 EDT 2008
    INFO:Start the Rollback postScript at Mon Aug 18 08:28:48 EDT 2008
    INFO:Finish the Rollback postScript at Mon Aug 18 08:28:48 EDT 2008
    INFO:Finish autoRollback of patch 5556081 at Mon Aug 18 08:28:48 EDT 2008
    INFO:ApplySession rolling back interim patch '5557962' from OH 'c:\oracle\ora102'
    INFO:Start autoRollback of patch 5557962 at Mon Aug 18 08:28:48 EDT 2008
    INFO:Start the Rollback preScript at Mon Aug 18 08:28:48 EDT 2008
    INFO:Finish the Rollback preScript at Mon Aug 18 08:28:48 EDT 2008
    INFO:Start modifying the system at Mon Aug 18 08:28:48 EDT 2008
    INFO:
    Patching component oracle.sysman.console.db, 10.2.0.3.0...
    INFO:Updating jar file "c:\oracle\ora102\sysman\jlib\emCORE.jar" with "\sysman\jlib\emCORE.jar\oracle\sysman\eml\app\ContextInitFilter.class"
    INFO:Updating jar file "c:\oracle\ora102\sysman\jlib\emCORE.jar" with "\sysman\jlib\emCORE.jar\oracle\sysman\eml\jobs\JobsListBean.class"
    INFO:Updating jar file "c:\oracle\ora102\sysman\jlib\emCORE.jar" with "\sysman\jlib\emCORE.jar\oracle\sysman\eml\jobs\JobSql.class"
    INFO:Updating jar file "c:\oracle\ora102\sysman\jlib\emjsp.jar" with "\sysman\jlib\emjsp.jar\_jobs\_jobsList.class"
    INFO:Updating jar file "c:\oracle\ora102\sysman\jlib\emjsp.jar" with "\sysman\jlib\emjsp.jar\_jobs\_jobsList$__jsp_StaticText.class"
    INFO:Copying file to "c:\oracle\ora102\sysman\admin\emdrep\sql\core\latest\jobs\jobs_ui_pkgbody.sql"
    INFO:Copying file to "c:\oracle\ora102\sysman\admin\emdrep\sql\core\latest\jobs\jobs_ui_pkgdef.sql"
    INFO:Copying file to "c:\oracle\ora102\sysman\admin\emdrep\sql\core\latest\jobs\jobs_types.sql"
    INFO:Finish modifying the system at Mon Aug 18 08:29:26 EDT 2008
    INFO:RollbackSession removing interim patch '5557962' from inventory
    INFO:Start removing patch from inventory at Mon Aug 18 08:29:26 EDT 2008
    INFO:Finish removing patch from inventory at Mon Aug 18 08:29:28 EDT 2008
    INFO:Start the Rollback postScript at Mon Aug 18 08:29:28 EDT 2008
    INFO:Finish the Rollback postScript at Mon Aug 18 08:29:28 EDT 2008
    INFO:Finish autoRollback of patch 5557962 at Mon Aug 18 08:29:28 EDT 2008
    INFO:
    OPatch back to application of the patch '7252496' after auto-rollback.
    INFO:Start backing up system for rollback at Mon Aug 18 08:29:28 EDT 2008
    INFO:Backing up files affected by the patch '7252496' for rollback. This might take a while...
    INFO:Finish backing up system for rollback at Mon Aug 18 08:29:48 EDT 2008
    INFO:Start the Apply preScript at Mon Aug 18 08:29:48 EDT 2008
    INFO:Execution of 'cmd /C "C:\oracle\ora102\OPatch\7252496\custom\scripts\pre.bat" -apply 7252496 ':
    Return Code = 0
    INFO:Finish the Apply preScript at Mon Aug 18 08:29:49 EDT 2008
    INFO:Start modifying the system at Mon Aug 18 08:29:49 EDT 2008
    INFO:
    Patching component oracle.rdbms, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\view_recompile\recompile_precheck_jan2008cpu.sql"
    INFO:Start Copy Action at Mon Aug 18 08:29:49 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:49 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\view_recompile\view_recompile_jan2008cpu.sql"
    INFO:Start Copy Action at Mon Aug 18 08:29:49 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:49 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\mesg\oraus.msb"
    INFO:Start Copy Action at Mon Aug 18 08:29:49 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtbpw.plb"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\xdbrelod.sql"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\jlib\aqapi12.jar"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\jlib\aqapi12_g.jar"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\jlib\aqapi13.jar"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\jlib\CDC.jar"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\jlib\jmscommon.jar"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtaqal.plb"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtaw.plb"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtxdb.plb"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtxdb0.plb"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtxdbp.plb"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtesch.plb"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\exfeapvs.plb"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\exfsppvs.plb"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtaq8x.plb"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtaqad.plb"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtaqds.plb"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtaqip.plb"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\jlib\aqapi13_g.jar"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\oracle.exe"
    INFO:Start Copy Action at Mon Aug 18 08:29:50 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:10 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\oracle.sym"
    INFO:Start Copy Action at Mon Aug 18 08:30:10 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\catcpu.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\catcpu_delta.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\catnowrr.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\catnowrrc.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\emcpu.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\dvcpu.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\sdocpu.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\dvcpu_delta.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\olscpu_delta.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\ordcpu_delta.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\sdocpu_delta.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\xdbcpu_delta.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\sdocpu_rollback.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\olscpu.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\ordcpu.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\xdbcpu.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\rulcpu.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\imcpu.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\ctxcpu.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\amdcpu.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\catcpu_rollback.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\wkcpu.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\BUNDLE\PATCH25\wkcpu_rollback.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\xml\xsl\kucoment.xsl"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\xml\xsl\kuidxwrk.xsl"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\xml\xsl\kutable.xsl"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtpexp.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtbstr.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtbobg.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtbadd.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtbmas.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtbrpc.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtbrrq.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtbsqu.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtbut4.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtofln.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtgen.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\a0801070.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\a0900010.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\a0902000.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\c0801070.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\c0902000.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\c1001000.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\catupgrd.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\e0902000.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\e1001000.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:
    Patching component oracle.sqlplus, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\bin\sqlplus.exe"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:
    Patching component oracle.rdbms.rman, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\bin\rman.exe"
    INFO:Start Copy Action at Mon Aug 18 08:30:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:15 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\recover.bsq"
    INFO:Start Copy Action at Mon Aug 18 08:30:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:15 EDT 2008
    INFO:
    Patching component oracle.rdbms.lbac, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtlbac.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:15 EDT 2008
    INFO:
    Patching component oracle.ntoledb.odp_net, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\bin\OraOps10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:15 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\ODP.NET\bin\1.x\Oracle.DataAccess.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:16 EDT 2008
    INFO:
    Patching component oracle.ntoledb, 10.2.0.2.20...
    INFO:Copying file to "c:\oracle\ora102\bin\OraOLEDBrst10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\OraOLEDBgmr10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\OraOLEDB10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\OraOLEDBpus10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\OraOLEDB10us.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:17 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\OraOLEDBrfc10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:17 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:17 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\OraOLEDBrmc10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:17 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:17 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\OraOLEDButl10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:17 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:17 EDT 2008
    INFO:
    Patching component oracle.rdbms.rsf, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\bin\orapls10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:17 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:18 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\orapls10.sym"
    INFO:Start Copy Action at Mon Aug 18 08:30:18 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:18 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\lib\orapls10.lib"
    INFO:Start Copy Action at Mon Aug 18 08:30:18 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:18 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\orageneric10.sym"
    INFO:Start Copy Action at Mon Aug 18 08:30:18 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:19 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\oraclient10.sym"
    INFO:Start Copy Action at Mon Aug 18 08:30:19 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:19 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\oracommon10.sym"
    INFO:Start Copy Action at Mon Aug 18 08:30:19 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:19 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\orageneric10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:19 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:21 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\oracommon10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:21 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:22 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\oraclient10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:22 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:22 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\orarat10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:22 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:22 EDT 2008
    INFO:
    Patching component oracle.rdbms.util, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\bin\sqlldr.exe"
    INFO:Start Copy Action at Mon Aug 18 08:30:23 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:23 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\exp.exe"
    INFO:Start Copy Action at Mon Aug 18 08:30:23 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:23 EDT 2008
    INFO:
    Patching component oracle.rdbms.oci, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\oci\lib\msvc\vc71\oraocci10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:23 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:23 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\oci\lib\msvc\vc7\oraocci10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:23 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\oci\lib\msvc\oraocci10.lib"
    INFO:Start Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\oci\lib\msvc\vc71\oraocci10.lib"
    INFO:Start Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\oci\lib\msvc\vc7\oraocci10.lib"
    INFO:Start Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\oci\lib\msvc\vc7\oraocci10d.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\oci\lib\msvc\vc71\oraocci10d.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\oci\lib\msvc\vc71\oraocci10d.lib"
    INFO:Start Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\oci\lib\msvc\vc7\oraocci10d.lib"
    INFO:Start Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\oci\lib\msvc\oci.lib"
    INFO:Start Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\oci\include\occiObjects.h"
    INFO:Start Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:24 EDT 2008
    INFO:
    Patching component oracle.rdbms.rsf.ic, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\bin\oci.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:25 EDT 2008
    INFO:Stack Description: java.lang.RuntimeException: c:\oracle\ora102\bin\oci.dll (The process cannot access the file because it is being used by another process)
    INFO:StackTrace: java.io.FileOutputStream.open(Native Method)
    INFO:StackTrace: java.io.FileOutputStream.<init>(FileOutputStream.java:179)
    INFO:StackTrace: java.io.FileOutputStream.<init>(FileOutputStream.java:131)
    INFO:StackTrace: oracle.opatch.SystemCall.copyFile(SystemCall.java:556)
    INFO:StackTrace: oracle.opatch.CopyAction.apply(CopyAction.java:1489)
    INFO:StackTrace: oracle.opatch.ApplySession.modifySystem(ApplySession.java:931)
    INFO:StackTrace: oracle.opatch.ApplySession.apply(ApplySession.java:711)
    INFO:StackTrace: oracle.opatch.ApplySession.processLocal(ApplySession.java:4150)
    INFO:StackTrace: oracle.opatch.ApplySession.process(ApplySession.java:4722)
    INFO:StackTrace: oracle.opatch.OPatchSession.main(OPatchSession.java:1113)
    INFO:StackTrace: oracle.opatch.OPatch.main(OPatch.java:516)
    INFO:Copying file to "c:\oracle\ora102\bin\ociw32.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:25 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:25 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\oraocci10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:25 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:25 EDT 2008
    INFO:
    Patching component oracle.network.rsf, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\bin\oran10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:25 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:25 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\oran10.sym"
    INFO:Start Copy Action at Mon Aug 18 08:30:25 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:26 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\cmgw.exe"
    INFO:Start Copy Action at Mon Aug 18 08:30:26 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:26 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\oranl10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:26 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:26 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\oranldap10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:26 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:26 EDT 2008
    INFO:
    Patching component oracle.network.rsf.ic, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\bin\orannzsbb10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:26 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:27 EDT 2008
    INFO:
    Patching component oracle.odbc.ic, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\bin\sqora32.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:27 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:27 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\sqresus.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:27 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:27 EDT 2008
    INFO:
    Patching component oracle.odbc, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\odbc\mesg\oraodbcus.msb"
    INFO:Start Copy Action at Mon Aug 18 08:30:27 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:27 EDT 2008
    INFO:
    Patching component oracle.has.rsf, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\orahasgen10.sym"
    INFO:Start Copy Action at Mon Aug 18 08:30:27 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:27 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\orahasgen10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:27 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:27 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\oraocr10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:28 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:28 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\oraocr10.sym"
    INFO:Start Copy Action at Mon Aug 18 08:30:28 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:28 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\oraocrb10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:28 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:28 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\oraocrb10.sym"
    INFO:Start Copy Action at Mon Aug 18 08:30:28 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:28 EDT 2008
    INFO:
    Patching component oracle.xdk.rsf, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\lib\oraxml10.lib"
    INFO:Start Copy Action at Mon Aug 18 08:30:28 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:28 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\oraxml10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:28 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:29 EDT 2008
    INFO:
    Patching component oracle.xdk, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\xdk\demo\cpp\new\SAXSampleGen.cpp"
    INFO:Start Copy Action at Mon Aug 18 08:30:29 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:29 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\xdk\include\xmlotn.hpp"
    INFO:Start Copy Action at Mon Aug 18 08:30:29 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:29 EDT 2008
    INFO:
    Patching component oracle.javavm.client, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\bin\orajox10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:29 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:30 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\lib\orajox10.lib"
    INFO:Start Copy Action at Mon Aug 18 08:30:30 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:30 EDT 2008
    INFO:
    Patching component oracle.oracore.rsf, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\oracore\zoneinfo\readme.txt"
    INFO:Start Copy Action at Mon Aug 18 08:30:30 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:30 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\oracore\zoneinfo\timezlrg.dat"
    INFO:Start Copy Action at Mon Aug 18 08:30:30 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:30 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\oracore\zoneinfo\timezone.dat"
    INFO:Start Copy Action at Mon Aug 18 08:30:30 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:30 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\oracore10.sym"
    INFO:Start Copy Action at Mon Aug 18 08:30:30 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:30 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\oracore10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:30 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\lib\oracore10.lib"
    INFO:Start Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:
    Patching component oracle.ctx, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\ctx\admin\u1002000.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\ctx\admin\ctxobj.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\ctx\admin\d1002000.sql"
    INFO:Start Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\ctx\admin\drvdml.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\ctx\admin\drvdoc.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\ctx\admin\driload.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\ctx\admin\drixmd.pkh"
    INFO:Start Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\ctx\admin\drixmd.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\ctx\admin\drvddl.plb"
    INFO:Start Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\ctx\mesg\drgus.msb"
    INFO:Start Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\ctx\mesg\drgus.msg"
    INFO:Start Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\ctxload.exe"
    INFO:Start Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\ctxhx.exe"
    INFO:Start Copy Action at Mon Aug 18 08:30:31 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\ctxkbtc.exe"
    INFO:Start Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\ctxlc.exe"
    INFO:Start Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\kvxwpsa.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:
    Patching component oracle.assistants.server, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\assistants\dbua\jlib\dbma.jar"
    INFO:Start Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\assistants\dbua\doc\help\migrationApplication_Express_Identification.html"
    INFO:Start Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\assistants\dbua\doc\help\migrationDatabase_File_Locations.html"
    INFO:Start Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\assistants\dbua\doc\help\migrationMove_Database_Files.html"
    INFO:Start Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\assistants\dbua\doc\help\migrationMultiplex_Redo_Logs.html"
    INFO:Start Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\assistants\dbua\doc\help\migrationRecovery_Configuration.html"
    INFO:Start Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\assistants\dbua\doc\help\migrationRename_Database.html"
    INFO:Start Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\assistants\dbua\doc\help\DBMA.map"
    INFO:Start Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\assistants\dbca\jlib\dbca.jar"
    INFO:Start Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:
    Patching component oracle.assistants.acf, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\assistants\jlib\assistantsCommon.jar"
    INFO:Start Copy Action at Mon Aug 18 08:30:32 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:33 EDT 2008
    INFO:
    Patching component oracle.dbjava.rsf, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\jdbc\lib\classes12.jar"
    INFO:Start Copy Action at Mon Aug 18 08:30:33 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:33 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\jdbc\lib\classes12.zip"
    INFO:Start Copy Action at Mon Aug 18 08:30:33 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:33 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\jdbc\lib\classes12dms.jar"
    INFO:Start Copy Action at Mon Aug 18 08:30:33 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:33 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\jdbc\lib\ojdbc14.jar"
    INFO:Start Copy Action at Mon Aug 18 08:30:33 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:33 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\jdbc\lib\ojdbc14dms.jar"
    INFO:Start Copy Action at Mon Aug 18 08:30:33 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:33 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\ocijdbc10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:30:33 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:30:33 EDT 2008
    INFO:
    Patching component oracle.sysman.bsln, 10.2.0.3.0...
    INFO:Updating jar file "c:\oracle\ora102\sysman\jlib\emCORE.jar" with "\sysman\jlib\emCORE.jar\oracle\sysman\emSDK\svlt\RedirectServlet.class"
    INFO:Start Jar Action at Mon Aug 18 08:30:33 EDT 2008
    INFO:Start Jar Action part I, command c:\oracle\ora102\jdk\bin\jar.exe -xf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\emSDK\svlt\RedirectServlet.class at Mon Aug 18 08:30:33 EDT 2008
    INFO:Finish Jar Action part I, command c:\oracle\ora102\jdk\bin\jar.exe -xf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\emSDK\svlt\RedirectServlet.class at Mon Aug 18 08:30:34 EDT 2008
    INFO:Start Jar Action part II, copy file C:\oracle\ora102\OPatch\7252496\files\sysman\jlib\emCORE.jar\oracle\sysman\emSDK\svlt\RedirectServlet.class to c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\sysman\jlib\oracle\sysman\emSDK\svlt\RedirectServlet.class at Mon Aug 18 08:30:34 EDT 2008
    INFO:Finish Jar Action part II, copy file C:\oracle\ora102\OPatch\7252496\files\sysman\jlib\emCORE.jar\oracle\sysman\emSDK\svlt\RedirectServlet.class to c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\sysman\jlib\oracle\sysman\emSDK\svlt\RedirectServlet.class at Mon Aug 18 08:30:34 EDT 2008
    INFO:Start Jar Action part III, command c:\oracle\ora102\jdk\bin\jar.exe -uf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\emSDK\svlt\RedirectServlet.class at Mon Aug 18 08:30:34 EDT 2008
    INFO:Finish Jar Action part III, command c:\oracle\ora102\jdk\bin\jar.exe -uf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\emSDK\svlt\RedirectServlet.class at Mon Aug 18 08:30:37 EDT 2008
    INFO:Finish Jar Action at Mon Aug 18 08:30:37 EDT 2008
    INFO:Updating jar file "c:\oracle\ora102\sysman\jlib\emCORE.jar" with "\sysman\jlib\emCORE.jar\oracle\sysman\emSDK\chart\EmChartBean.class"
    INFO:Start Jar Action at Mon Aug 18 08:30:38 EDT 2008
    INFO:Start Jar Action part I, command c:\oracle\ora102\jdk\bin\jar.exe -xf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\emSDK\chart\EmChartBean.class at Mon Aug 18 08:30:38 EDT 2008
    INFO:Finish Jar Action part I, command c:\oracle\ora102\jdk\bin\jar.exe -xf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\emSDK\chart\EmChartBean.class at Mon Aug 18 08:30:39 EDT 2008
    INFO:Start Jar Action part II, copy file C:\oracle\ora102\OPatch\7252496\files\sysman\jlib\emCORE.jar\oracle\sysman\emSDK\chart\EmChartBean.class to c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\sysman\jlib\oracle\sysman\emSDK\chart\EmChartBean.class at Mon Aug 18 08:30:39 EDT 2008
    INFO:Finish Jar Action part II, copy file C:\oracle\ora102\OPatch\7252496\files\sysman\jlib\emCORE.jar\oracle\sysman\emSDK\chart\EmChartBean.class to c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\sysman\jlib\oracle\sysman\emSDK\chart\EmChartBean.class at Mon Aug 18 08:30:39 EDT 2008
    INFO:Start Jar Action part III, command c:\oracle\ora102\jdk\bin\jar.exe -uf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\emSDK\chart\EmChartBean.class at Mon Aug 18 08:30:39 EDT 2008
    INFO:Finish Jar Action part III, command c:\oracle\ora102\jdk\bin\jar.exe -uf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\emSDK\chart\EmChartBean.class at Mon Aug 18 08:30:42 EDT 2008
    INFO:Finish Jar Action at Mon Aug 18 08:30:42 EDT 2008
    INFO:Updating jar file "c:\oracle\ora102\sysman\jlib\emCORE.jar" with "\sysman\jlib\emCORE.jar\oracle\sysman\emSDK\sec\auth\Login.class"
    INFO:Start Jar Action at Mon Aug 18 08:30:43 EDT 2008
    INFO:Start Jar Action part I, command c:\oracle\ora102\jdk\bin\jar.exe -xf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\emSDK\sec\auth\Login.class at Mon Aug 18 08:30:43 EDT 2008
    INFO:Finish Jar Action part I, command c:\oracle\ora102\jdk\bin\jar.exe -xf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\emSDK\sec\auth\Login.class at Mon Aug 18 08:30:44 EDT 2008
    INFO:Start Jar Action part II, copy file C:\oracle\ora102\OPatch\7252496\files\sysman\jlib\emCORE.jar\oracle\sysman\emSDK\sec\auth\Login.class to c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\sysman\jlib\oracle\sysman\emSDK\sec\auth\Login.class at Mon Aug 18 08:30:44 EDT 2008
    INFO:Finish Jar Action part II, copy file C:\oracle\ora102\OPatch\7252496\files\sysman\jlib\emCORE.jar\oracle\sysman\emSDK\sec\auth\Login.class to c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\sysman\jlib\oracle\sysman\emSDK\sec\auth\Login.class at Mon Aug 18 08:30:44 EDT 2008
    INFO:Start Jar Action part III, command c:\oracle\ora102\jdk\bin\jar.exe -uf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\emSDK\sec\auth\Login.class at Mon Aug 18 08:30:44 EDT 2008
    INFO:Finish Jar Action part III, command c:\oracle\ora102\jdk\bin\jar.exe -uf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\emSDK\sec\auth\Login.class at Mon Aug 18 08:30:47 EDT 2008
    INFO:Finish Jar Action at Mon Aug 18 08:30:47 EDT 2008
    INFO:Updating jar file "c:\oracle\ora102\sysman\jlib\emCORE.jar" with "\sysman\jlib\emCORE.jar\oracle\sysman\eml\ecm\track\hc\HCUIUtil.class"
    INFO:Start Jar Action at Mon Aug 18 08:30:48 EDT 2008
    INFO:Start Jar Action part I, command c:\oracle\ora102\jdk\bin\jar.exe -xf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\eml\ecm\track\hc\HCUIUtil.class at Mon Aug 18 08:30:48 EDT 2008
    INFO:Finish Jar Action part I, command c:\oracle\ora102\jdk\bin\jar.exe -xf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\eml\ecm\track\hc\HCUIUtil.class at Mon Aug 18 08:30:49 EDT 2008
    INFO:Start Jar Action part II, copy file C:\oracle\ora102\OPatch\7252496\files\sysman\jlib\emCORE.jar\oracle\sysman\eml\ecm\track\hc\HCUIUtil.class to c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\sysman\jlib\oracle\sysman\eml\ecm\track\hc\HCUIUtil.class at Mon Aug 18 08:30:49 EDT 2008
    INFO:Finish Jar Action part II, copy file C:\oracle\ora102\OPatch\7252496\files\sysman\jlib\emCORE.jar\oracle\sysman\eml\ecm\track\hc\HCUIUtil.class to c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\sysman\jlib\oracle\sysman\eml\ecm\track\hc\HCUIUtil.class at Mon Aug 18 08:30:49 EDT 2008
    INFO:Start Jar Action part III, command c:\oracle\ora102\jdk\bin\jar.exe -uf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\eml\ecm\track\hc\HCUIUtil.class at Mon Aug 18 08:30:49 EDT 2008
    INFO:Finish Jar Action part III, command c:\oracle\ora102\jdk\bin\jar.exe -uf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\eml\ecm\track\hc\HCUIUtil.class at Mon Aug 18 08:30:52 EDT 2008
    INFO:Finish Jar Action at Mon Aug 18 08:30:53 EDT 2008
    INFO:Updating jar file "c:\oracle\ora102\sysman\jlib\emCORE.jar" with "\sysman\jlib\emCORE.jar\oracle\sysman\eml\app\ContextInitFilter.class"
    INFO:Start Jar Action at Mon Aug 18 08:30:53 EDT 2008
    INFO:Start Jar Action part I, command c:\oracle\ora102\jdk\bin\jar.exe -xf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\eml\app\ContextInitFilter.class at Mon Aug 18 08:30:53 EDT 2008
    INFO:Finish Jar Action part I, command c:\oracle\ora102\jdk\bin\jar.exe -xf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\eml\app\ContextInitFilter.class at Mon Aug 18 08:30:54 EDT 2008
    INFO:Start Jar Action part II, copy file C:\oracle\ora102\OPatch\7252496\files\sysman\jlib\emCORE.jar\oracle\sysman\eml\app\ContextInitFilter.class to c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\sysman\jlib\oracle\sysman\eml\app\ContextInitFilter.class at Mon Aug 18 08:30:54 EDT 2008
    INFO:Finish Jar Action part II, copy file C:\oracle\ora102\OPatch\7252496\files\sysman\jlib\emCORE.jar\oracle\sysman\eml\app\ContextInitFilter.class to c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\sysman\jlib\oracle\sysman\eml\app\ContextInitFilter.class at Mon Aug 18 08:30:54 EDT 2008
    INFO:Start Jar Action part III, command c:\oracle\ora102\jdk\bin\jar.exe -uf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\eml\app\ContextInitFilter.class at Mon Aug 18 08:30:54 EDT 2008
    INFO:Finish Jar Action part III, command c:\oracle\ora102\jdk\bin\jar.exe -uf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\eml\app\ContextInitFilter.class at Mon Aug 18 08:30:58 EDT 2008
    INFO:Finish Jar Action at Mon Aug 18 08:30:58 EDT 2008
    INFO:Updating jar file "c:\oracle\ora102\sysman\jlib\emCORE.jar" with "\sysman\jlib\emCORE.jar\oracle\sysman\eml\jobs\JobSql.class"
    INFO:Start Jar Action at Mon Aug 18 08:30:58 EDT 2008
    INFO:Start Jar Action part I, command c:\oracle\ora102\jdk\bin\jar.exe -xf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\eml\jobs\JobSql.class at Mon Aug 18 08:30:58 EDT 2008
    INFO:Finish Jar Action part I, command c:\oracle\ora102\jdk\bin\jar.exe -xf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\eml\jobs\JobSql.class at Mon Aug 18 08:30:59 EDT 2008
    INFO:Start Jar Action part II, copy file C:\oracle\ora102\OPatch\7252496\files\sysman\jlib\emCORE.jar\oracle\sysman\eml\jobs\JobSql.class to c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\sysman\jlib\oracle\sysman\eml\jobs\JobSql.class at Mon Aug 18 08:30:59 EDT 2008
    INFO:Finish Jar Action part II, copy file C:\oracle\ora102\OPatch\7252496\files\sysman\jlib\emCORE.jar\oracle\sysman\eml\jobs\JobSql.class to c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\sysman\jlib\oracle\sysman\eml\jobs\JobSql.class at Mon Aug 18 08:30:59 EDT 2008
    INFO:Start Jar Action part III, command c:\oracle\ora102\jdk\bin\jar.exe -uf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\eml\jobs\JobSql.class at Mon Aug 18 08:30:59 EDT 2008
    INFO:Finish Jar Action part III, command c:\oracle\ora102\jdk\bin\jar.exe -uf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\eml\jobs\JobSql.class at Mon Aug 18 08:31:02 EDT 2008
    INFO:Finish Jar Action at Mon Aug 18 08:31:03 EDT 2008
    INFO:Updating jar file "c:\oracle\ora102\sysman\jlib\emCORE.jar" with "\sysman\jlib\emCORE.jar\oracle\sysman\eml\jobs\JobsListBean.class"
    INFO:Start Jar Action at Mon Aug 18 08:31:03 EDT 2008
    INFO:Start Jar Action part I, command c:\oracle\ora102\jdk\bin\jar.exe -xf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\eml\jobs\JobsListBean.class at Mon Aug 18 08:31:03 EDT 2008
    INFO:Finish Jar Action part I, command c:\oracle\ora102\jdk\bin\jar.exe -xf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\eml\jobs\JobsListBean.class at Mon Aug 18 08:31:04 EDT 2008
    INFO:Start Jar Action part II, copy file C:\oracle\ora102\OPatch\7252496\files\sysman\jlib\emCORE.jar\oracle\sysman\eml\jobs\JobsListBean.class to c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\sysman\jlib\oracle\sysman\eml\jobs\JobsListBean.class at Mon Aug 18 08:31:04 EDT 2008
    INFO:Finish Jar Action part II, copy file C:\oracle\ora102\OPatch\7252496\files\sysman\jlib\emCORE.jar\oracle\sysman\eml\jobs\JobsListBean.class to c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\sysman\jlib\oracle\sysman\eml\jobs\JobsListBean.class at Mon Aug 18 08:31:04 EDT 2008
    INFO:Start Jar Action part III, command c:\oracle\ora102\jdk\bin\jar.exe -uf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\eml\jobs\JobsListBean.class at Mon Aug 18 08:31:04 EDT 2008
    INFO:Finish Jar Action part III, command c:\oracle\ora102\jdk\bin\jar.exe -uf c:\oracle\ora102\.patch_storage\7252496_Jul_16_2008_10\scratch\\sysman\jlib\emCORE.jar oracle\sysman\eml\jobs\JobsListBean.class at Mon Aug 18 08:31:08 EDT 2008
    INFO:Finish Jar Action at Mon Aug 18 08:31:08 EDT 2008
    INFO:
    Patching component oracle.sysman.repository.db, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\sysman\jlib\emDB.jar"
    INFO:Start Copy Action at Mon Aug 18 08:31:08 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:
    Patching component oracle.oraolap.api, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\olap\api\lib\awxml.jar"
    INFO:Start Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\olap\api\lib\olap_api.jar"
    INFO:Start Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\olap\api\lib\olap_api_spl.jar"
    INFO:Start Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\olap\api\doc\olap_api_doc.jar"
    INFO:Start Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\olap\api\doc\olap_awxml_doc.jar"
    INFO:Start Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:
    Patching component oracle.sysman.repository.core, 10.2.0.3.0a...
    INFO:Copying file to "c:\oracle\ora102\sysman\admin\emdrep\sql\core\latest\jobs\jobs_types.sql"
    INFO:Start Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\sysman\admin\emdrep\sql\core\latest\jobs\jobs_ui_pkgdef.sql"
    INFO:Start Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\sysman\admin\emdrep\sql\core\latest\jobs\jobs_ui_pkgbody.sql"
    INFO:Start Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:
    Patching component oracle.oraolap, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\bin\oraolapapi10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:31:09 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:11 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\olap\admin\xumuts.plb"
    INFO:Start Copy Action at Mon Aug 18 08:31:11 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:11 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\olap\admin\prvtawx.plb"
    INFO:Start Copy Action at Mon Aug 18 08:31:11 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:11 EDT 2008
    INFO:
    Patching component oracle.sysman.agent.db, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\bin\oranmemso.dll"
    INFO:Start Copy Action at Mon Aug 18 08:31:11 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:12 EDT 2008
    INFO:
    Patching component oracle.sysman.agent.core, 10.2.0.3.0a...
    INFO:Copying file to "c:\oracle\ora102\bin\nmo.exe"
    INFO:Start Copy Action at Mon Aug 18 08:31:12 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:12 EDT 2008
    INFO:
    Patching component oracle.nlsrtl.rsf, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\bin\oranls10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:31:12 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\oranls10.sym"
    INFO:Start Copy Action at Mon Aug 18 08:31:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\jlib\orai18n.jar"
    INFO:Start Copy Action at Mon Aug 18 08:31:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:13 EDT 2008
    INFO:
    Patching component oracle.has.common, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\jlib\srvm.jar"
    INFO:Start Copy Action at Mon Aug 18 08:31:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\bin\ocssd.exe"
    INFO:Start Copy Action at Mon Aug 18 08:31:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\ocssd.sym"
    INFO:Start Copy Action at Mon Aug 18 08:31:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:13 EDT 2008
    INFO:
    Patching component oracle.sysman.console.db, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\oc4j\j2ee\oc4j_applications\applications\em\em.war"
    INFO:Start Copy Action at Mon Aug 18 08:31:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\oc4j\j2ee\oc4j_applications\applications\em\em\WEB-INF\xsls\kucoment.xsl"
    INFO:Start Copy Action at Mon Aug 18 08:31:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:13 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\oc4j\j2ee\oc4j_applications\applications\em\em\WEB-INF\xsls\kuidxwrk.xsl"
    INFO:Start Copy Action at Mon Aug 18 08:31:13 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\oc4j\j2ee\oc4j_applications\applications\em\em\logon.uix"
    INFO:Start Copy Action at Mon Aug 18 08:31:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:14 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\sysman\jlib\emjsp.jar"
    INFO:Start Copy Action at Mon Aug 18 08:31:14 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:
    Patching component oracle.sysman.common.core, 10.2.0.3.0a...
    INFO:Copying file to "c:\oracle\ora102\sysman\admin\scripts\SecureGenKeystore.pm"
    INFO:Start Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:
    Patching component oracle.ldap.rsf, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\bin\oraldapclnt10.dll"
    INFO:Start Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:
    Patching component oracle.rdbms.dbscripts, 10.2.0.3.0...
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\a1001000.sql"
    INFO:Start Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\c1002000.sql"
    INFO:Start Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\catpstr.sql"
    INFO:Start Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\catproc.sql"
    INFO:Start Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\catcap.sql"
    INFO:Start Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\catmeta.sql"
    INFO:Start Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\catsch.sql"
    INFO:Start Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtmeti.plb"
    INFO:Start Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtlms.plb"
    INFO:Start Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvthlut.plb"
    INFO:Start Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtblut.plb"
    INFO:Start Copy Action at Mon Aug 18 08:31:15 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\rulimpvs.plb"
    INFO:Start Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\dbmspbt.sql"
    INFO:Start Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\dbmsxmld.sql"
    INFO:Start Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\dbmsxslp.sql"
    INFO:Start Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtpbt.plb"
    INFO:Start Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\tracetab.sql"
    INFO:Start Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtxslp.plb"
    INFO:Start Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtxmld.plb"
    INFO:Start Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\xdbxepatch.sql"
    INFO:Start Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtutil.plb"
    INFO:Start Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtstat.plb"
    INFO:Start Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtstas.plb"
    INFO:Start Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Copying file to "c:\oracle\ora102\rdbms\admin\prvtbcap.plb"
    INFO:Start Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Finish Copy Action at Mon Aug 18 08:31:16 EDT 2008
    INFO:Copying file to "c:\ora

    Try updating your version of OPatch. You appear to be using OPatch version 10.2.0.3.0 and the readme for patch 7252496 states you should be using OPatch 10.2.0.3.4 or later. You can download it from Oracle MetaLink with patch 6880880.
    Also make sure all the Oracle services are stopped and also make sure you stop the Distributed Transaction Coordinator service if it is running.

  • Error Code 1000 when trying to run Backup Assistant Plus.

    I am getting backup failed and Error Code 1000 when trying to run Backup Assistant Plus.  Have not been able to backup for several weeks.Droid Razr Maxx.

        Hi ellendritz- We are dedicated to make it easier to backup your data! We have integrated Backup Assistant with the Verizon Cloud service offering you many more features and 5GB of storage free! Visit http://www.vzw.com/cloud for more details. The Verizon Cloud app is currently available for download in the Google PlayStore. Please attempt backup with the new application and keep me posted on the status as I would be happy to offer additional support if needed.
    Thank you,
    YaleK_VZW
    Follow us on Twitter @VZWsupport

  • Error when Trying to Run Concurrent Request on ASCP Instance

    Hi Experts,
    I have an issue when trying to run custom concurrent program in ASCP production.
    The error message is:
    oracle error 20001
    ORA-20001: APP-FND-02901
    You do not have access privilege to any operating unit. Please check if your profile option MO: Security Profile includes any operating unit or the profile option MO: Operating Unit is set has been detected in MO_GLOBAL.INIT
    I have searched through metalink regarding this issue and the solution is I should define the "MO: Security Profile" and "MO: Operating Unit" profiles.
    But the problem is my ASCP instance is not have any OU, it just defined for Inv Orgs. So, when I tried to define the profile, the LOV is empty.
    FYI, in my ASCP dev instance is working fine. I can run my concurrent request into it.
    In this instance, the profiles of "MO: Security Profile" and "MO: Operating Unit" are blank too.
    From this node:
    XLAACCPB - Create Accounting Program fails with Oracle error -20001: ORA-20001: APP-FND-02901: You do not have access privilege to any operating unit [ID 753824.1]
    It provided 2 actions, and when I tried to run query in the 2nd action, the result is:
    /* $Header: AFPFPROB.pls 120.18.12010000.10 2009/04/24 19:33:53 pdeluna ship $ */
    Any help would be really appreciated.
    Thanks & Regards,
    Rheza

    Hello Rheza,
    We are also facing the same issue in Self Service HR, We also do not have any Operating Unit setup.
    We are trying to run seeded "Active Users" concurrent program. Are you sure without setup of MO: Security Profile / MO: Operating Unit, It will work?
    Regards,
    Saurabh

  • WRT54G ver 6, MTU test fails when trying to connect to Xbox360 live

    MTU test fails when trying to connect wirelessly to Xbox360 live.  Firmware is current.   I have a WRT54G version #6, Motorola Surfboard SB5101 Cable Modem, running AOL HighSpeed Broadband through Time Warner Cable.  Changing the MTU setting does not work.  I have tried several other suggestions found on these boards but nothing seems to work.  Any help would be greatly appreciated!

    hi twhale.... If you had already tried the settings i posted ... in such case you can do one thing .... access router setup page ... under Security ... uncheck block wan request ... click save settings .... Under Applications & Gaming tab ... click port range forwarding .... forward ports 88 & 3074 for the static Ip of the X-BOX ... click save settings . Click save settings ... check X-BOX live test ... if still shows the same error ... upgrade/reflash the firmware ...

  • App File Server connection error when trying to run a BI Publisher report..

    hello Gurus...
    As above - App File Server connection error when trying to run a BI Publisher report.. FOR THE FIRST TIME.
    What does our DBA need to do..?
    error message reads..
    Template code: SUARXASR
    Template app:  AR
    Language:      en
    Territory:     GB
    Output type:   EXCEL
    [5/10/10 10:59:27 AM] [UNEXPECTED] [46321:RT1487572]
    oracle.apps.fnd.cp.util.RemoteFileException: An error occurred while attempting to establish an Applications File Server connection with the node FNDFS_*****.ac.uk. There may be a network configuration problem, or the TNS listener on node FNDFS_*****.ac.uk may not be running. Please contact your system administrator.
    at oracle.apps.fnd.cp.util.RemoteFile.readURL(RemoteFile.java:241)
    at oracle.apps.fnd.cp.util.RemoteFile.transferFile(RemoteFile.java:194)
    at oracle.apps.fnd.cp.util.RemoteFile.transfer(RemoteFile.java:130)
    at  oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:264)at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:157)
    [5/10/10 10:59:27 AM] [46321:RT1487572] Completed post-processing actions for request 1487572.I'm sure we never had to set anything up in our Test instance!??!!??
    many thanks for looking..
    Steven

    nobody experienced this before..?

  • Error Message when trying to run Applications Module in OA Framework

    Below is the message that I received when trying to run my Applicaitons Module in test mode. When I click the error message I navigate to "public class TpcApBanksEOImpl extends OAEntityImpl". I was told to put "abstract" before "class" and to run it. It did compile after that, but I was wondering if anyone could tell me why.
    Error(12,8): class test_xxtpc.bc4j.TpcApBanksImpl should be declared abstract; it does not define method setLastUpdateLogin(oracle.jbo.domain.Number) in class oracle.apps.fnd.framework.server.OAEntityImpl

    User,
    Basically, an abstract method is a method in a class where just the signature is defined, and no implementation is provided. What you are being told by the compiler is that the method setLastupdateLogin is abstract, meaning that neither TpcApBanksImpl nor OAEntityImpl nor any of it's parents implement that method; therefore, your TpcApBanksImpl must be declared abstract.
    Hope this Helps,
    John

  • I'm getting a -2003F error when trying to run the internet recovery after installing a new hard disk in my macbook pro, any suggestions?

    After installing a new hard drive in my 2011 macbook pro, I'm getting a apple.com/support -2003F error when trying to run the internet recovery.  Any suggestions?

    Did you format the new HDD?  What is the status of the old HDD?
    Do you have an early or late 2011 MBP?
    Ciao.

  • When trying to run any page on jdev 9.0.3.5 the jdev close

    when trying to run any page on jdev 9.0.3.5 the jdev close immidiatly and an empty log file is created i am using ie 8

    Hi,
    Check whether all the relevant services are up. If the problem still persist then there might be some issue with your JDeveloper.
    Regards,
    Gyan

Maybe you are looking for