Statement failing when apostrephe

Hi,
I have a dynamic where clause as below, but it fails when the custname has any apostrephe in between, could anybody help.Thanks.
vWhere := ' WHERE ' || rec-cur.ref_table_column ||' = ' || chr(39) || name_in(Custname) || chr(39) ||' '

Thanks for the response,
I have treid as below , the actual statement has a substr function also. some reason it is still not working (here the custname - Mod's KCO), any other alternate solution for this,
vWhere := ' WHERE ' || rec_cur.ref_table_column||' = ' || chr(39) || replace(name_in(substr(Custname,3)),chr(39), chr(39)||chr(39)) || chr(39) ||' ';

Similar Messages

  • Server state failed when starting through node manager

    Hi,
    I'm getting the below error while starting the managed server through node manager
    <Sep 14, 2010 3:49:34 PM> <Warning> <Exception while starting server 'ms01': java.io.IOException: Server failed to start up. See server
    output log for more details.>
    java.io.IOException: Server failed to start up. See server output log for more details.
    at weblogic.nodemanager.server.ServerManager.start(ServerManager.java:303)
    at weblogic.nodemanager.server.Handler.handleStart(Handler.java:542)
    at weblogic.nodemanager.server.Handler.handleCommand(Handler.java:119)
    at weblogic.nodemanager.server.Handler.run(Handler.java:66)
    at java.lang.Thread.run(Thread.java:619)
    I have checked the server logs and it shows the below error code
    ./admin-stdout.log:<Sep 15, 2010 4:15:56 PM PDT> <Error> <NodeManager> <BEA-300048> <Unable to start the server ms01 : Exception while starting server 'ms01': java.io.IOException: Server failed to start up. See server output log for more details.>
    I have also checked WebLogic documentation for BEA-300048. It says "Cause: The most likely cause is a configuration error in the Shell/SSH/RSH NodeManager configuration".
    but I'm using Java based node manager
    All this is coming up when I enable StartScriptEnabled to true in nodemanager.properties.
    What could be reason for failure?

    Hi.
    If you are not using the latest service pack (sp2) please do so. If you are and are still seeing this
    problem please open a case with support.
    Thanks
    Michael
    Tim Dawson wrote:
    I get this message whenever I try to use the console to start a managed server
    on a remote system.
    <Jan 12, 2002 8:18:26 AM PST> <Emergency> <WebLogicServer> <Unable to create a
    server socket for: weblogic2.dev.wamnet.com/172.17.27.84, port: 7001. java.net.BindException:
    Cannot assign requested address: JVM_Bind Perhaps the address weblogic2.dev.wamnet.com/172.17.27.84
    is incorrect or another process is using port 7001.>
    I've checked and checked and the only thing running on that box is the node manager!
    The console will start a managed server on the local system (i.e. the system
    that the admin server is running on) without any complaints.
    Any ideas? Thanks,
    Tim--
    Michael Young
    Developer Relations Engineer
    BEA Support

  • Re: Select statement fails under Express, but works underForte when usi

    Hi there,
    I have logged this with Forte and it as been recognized as a bug ( #46554 ).
    The Express methods you need to look at if you want to modify this behavior
    are :
    1 - BusinessQuery.BuildQuery() starting at line 217
    2 - SqlQuery.GetWhereText() starting at line 60
    We have gotten around the problem by modifying what Express generates by
    changing it from ( col1, col2 ) in ( select col1, col2 ... ) to ( col1 +
    col2 ) in ( select col1 + col2 ... )
    Just one thing i'm not sure that the '+' is standard on every DBMS for
    concatenation.
    We are using SQL Server 6.5
    Hope this helps.
    Christian Boult ([email protected])
    Programmeur - Analyste
    Influatec inc.
    -----Original Message-----
    From: Metcalf, Roger <[email protected]>
    To: '[email protected]' <[email protected]>
    Date: Thursday, May 06, 1999 1:55 PM
    Subject: Select statement fails under Express, but works under Forte when
    using DB2
    Express sometimes (e.g. with nested windows) generates SQL with a select
    subquery, e.g.
    select x1, x2 from t1 where (x1,x2) in (select x1,x2 from t2.....)
    This fails on DB2 with a message that the comma in the where clause (x1,x2)
    is not allowed.
    This works on Oracle.
    Does anyone have a workaround or other suggestion?
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    joe.meszaros wrote:
    (SELECT ? AS Id, ? AS UserBytes FROM dual)I suggest that you test to see if that statement and ONLY that statement works at all.
    There are rules for bind variables and that statement certainly looks suspicious.
    If you can't get that to work then the rest of the attempt is pointless.

  • Trigger fails when variable used in WHERE statement

    I have a trigger that works when the following statment is in it:
    SELECT custcall.callrkey into v_callrkey from custcall where custcall.servno = 152345;
    But the trigger fails when I attempt to use a variable in the where statement as follows.
    SELECT custcall.callrkey into v_callrkey from custcall where custcall.servno = :new.servno ;
    Even though I have verified that the value of :new.servno is set to 152345 by outputting the value . That is the only difference between the working version and the non-working version. By not working I mean that the email which is to be sent by the trigger is not received.
    Can anyone give me any ideas of how I could troubleshoot this or what might me happening? I'm pretty new to this and
    feel that I'm missing something very simple. My apologies in advance if this has been posted elsewhere. I did spend a lot of time searching the forum before posting.
    This is Oracle 9i.
    Thanks!
    Full code probably not necessary but posted below just in case:
    create or replace
    TRIGGER EMAILNOTIFY_NEW_SR
    AFTER INSERT ON CUSTPROB
    FOR EACH ROW
    DECLARE
    --SMTP Variables
    vreply utl_smtp.reply;
    vreplies utl_smtp.replies;
    mailCONN utl_smtp.connection;
    mailHOST VARCHAR2(64) ;
    --MESSAGE Variables
    mailText VARCHAR2(64);
    mailFROM VARCHAR2(64);
    mailTO VARCHAR2(64);
    mailDATE VARCHAR2(20);
    v_servno number ;
    v_callrkey number ;
    --PROGRAM Variables
    i number;
    BEGIN
    --get some values from the database  
    --set values for variables...
    mailHOST:= '10.35.173.15'; --this will always stay the same 
    mailFROM := 'Facilities_Customer_Service_Center'; --this will always stay the same
    mailTO := '[email protected]';
    SELECT custcall.callrkey into v_callrkey from custcall where custcall.servno = :new.servno  ;
    SELECT TO_CHAR(SYSDATE,'MM/DD/YYYY HH24:MI:SS') INTO mailDATE FROM dual;
    dbms_output.put_line('open_connection');
    dbms_output.put_line('---------------');
    vreply := utl_smtp.open_connection(mailHOST, 25, mailCONN);
    dbms_output.put_line('helo');
    dbms_output.put_line('----');
    vreply := utl_smtp.helo(mailCONN, mailHOST);
    dbms_output.put_line( 'code = ' || vreply.code );
    dbms_output.put_line( 'text = ' || vreply.text );
    dbms_output.put_line('mail');
    dbms_output.put_line('----');
    vreply := utl_smtp.mail(mailCONN, mailFROM);
    dbms_output.put_line( 'code = ' || vreply.code );
    dbms_output.put_line( 'text = ' || vreply.text );
    dbms_output.put_line('rcpt to');
    dbms_output.put_line('----');
    vreply := utl_smtp.rcpt(mailCONN, mailTO);
    dbms_output.put_line( 'code = ' || vreply.code );
    dbms_output.put_line( 'text = ' || vreply.text );
    dbms_output.put_line('open_data');
    dbms_output.put_line('---------');
    vreply := utl_smtp.open_data(mailCONN);
    dbms_output.put_line( 'code = ' || vreply.code );
    dbms_output.put_line( 'text = ' || vreply.text );
    --SMTP ENVELOPE STUFF (In case it is needed later).  
    --utl_smtp.write_data(mailCONN, 'From:'  ||mailFROM     || chr(13));
    -- utl_smtp.write_data(mailCONN, 'To: '||mailTo || chr(13));
    --utl_smtp.write_data(mailCONN, 'CC:      '||mailFROM     || chr(13));
    --utl_smtp.write_data(mailCONN, 'Date:    '||mailDATE     || chr(13));
    --utl_smtp.write_data(mailCONN, 'BCC:     '||mailFROM     || chr(13));
    --THE MESSAGE
    utl_smtp.write_data(mailCONN, 'Subject: '||'Your Facilities Service Request ' ||'(SR '||v_servno||')'|| chr(13));
    utl_smtp.write_data(mailCONN, '');
    utl_smtp.write_data(mailCONN, '');
    utl_smtp.write_data(mailCONN, 'Dear Customer ' || chr(13));
    utl_smtp.write_data(mailCONN, '');
    utl_smtp.write_data(mailCONN, 'This is to inform you of something.' || ' ' ||mailTO|| chr(13) );
    utl_smtp.write_data(mailCONN, 'Please call us with any questions or concerns. ' || '' || chr(13));
    --DEBUG
    utl_smtp.write_data(mailCONN, 'DEBUG: ' || ''|| chr(13));
    utl_smtp.write_data(mailCONN, 'v_Servno ' || v_servno || chr(13));
    utl_smtp.write_data(mailCONN, 'v_callrkey ' || v_callrkey || chr(13));
    --END THE MESSAGE
    dbms_output.put_line('close_data');
    dbms_output.put_line('----------');
    vreply := utl_smtp.close_data(mailCONN);
    dbms_output.put_line( 'code = ' || vreply.code );
    dbms_output.put_line( 'text = ' || vreply.text );
    dbms_output.put_line('quit');
    dbms_output.put_line('----');
    vreply := utl_smtp.quit(mailCONN);
    dbms_output.put_line( 'code = ' || vreply.code );
    dbms_output.put_line( 'text = ' || vreply.text );
    END;

    Justin,
    Thanks for the reply. I'm away for a couple of days but when I get back to this I'm going to follow up on your suggestion about servno. I'm starting to think that the issue isn't with servno but rather that the select query doesn't return anything because the value I'm trying to get is in another table and is not being inserted in time for me to get them. This will be easiy enough to test. To be honest, I don't know very much about how things are being inserted.
    I appreciate your and Tubby's (and Tom's) concerns. Maybe I'll go back to the drawing board next week. But note that I'm not inserting anything with this trigger--only sending an email based on the insert that is happening through an application. So unless I'm really missing it, my email is dependent on the insert but not vice versa. Since my email is absolutely critical but rather jus a courtesy thing, I was taking a pretty laid back attitude about it but it would be good for me to learn a better way.
    Thanks again to all! I'll report back what I find/decide.

  • When the Worker.State FAILED occurs in a Task?

    How to detect that a Worker.State FAILED occurs in a Task? or to say when the Worker.State FAILED occurs in a Task? Is it when an exception happens in the call() method of Task?
    Consider the code below:
    import java.io.BufferedReader;
    import java.io.InputStream;
    import java.io.InputStreamReader;
    import java.net.URI;
    import java.net.URISyntaxException;
    import java.net.URL;
    import java.net.URLConnection;
    import javafx.concurrent.Task;
    * Background task to fetch the all classes documentation page from a URL
    public class FetchDocListTask extends Task<String> {
      private final String docsDirUrl;
      public FetchDocListTask(String docsDirUrl) {
      this.docsDirUrl = docsDirUrl;
      @Override
      protected String call() throws Exception {
      System.out.println("---- FetchDocListTask  docsUrl = " + docsDirUrl);
      StringBuilder builder = new StringBuilder();
      try {
      URI uri = new URI(docsDirUrl + "allclasses-frame.html");
      URL url = uri.toURL();
      URLConnection urlConnection = url.openConnection();
      urlConnection.setConnectTimeout(5000); // set timeout to 5 secs
      InputStream in = urlConnection.getInputStream();
      BufferedReader reader = new BufferedReader(
      new InputStreamReader(in));
      String line;
      while ((line = reader.readLine()) != null) {
      builder.append(line);
      builder.append('\n');
      reader.close();
      } catch (URISyntaxException e) {
      e.printStackTrace();
      return builder.toString();
    When the State.FAILED occurs? In fact, I want to write a code to simply detect whether the computer is connected to the internet. Hope for help~

    Yes. If the call() method exits due to an unhandled exception, the state property changes to FAILED. If a return statement is successfully executed, the state property changes to SUCCEEDED. There are no other possibilities.
    You can test with something like:
    import javafx.application.Application;
        import javafx.concurrent.Task;
        import javafx.concurrent.WorkerStateEvent;
        import javafx.event.EventHandler;
        import javafx.scene.Scene;
        import javafx.scene.control.TextArea;
        import javafx.scene.layout.BorderPane;
        import javafx.stage.Stage;
        public class TaskStateTest extends Application {
            public static void main(String[] args) { launch(args); }
            @Override
            public void start(final Stage primaryStage) {
                Task<Void> exceptionHandlingTask = new Task<Void>() {
                    @Override
                    protected Void call() throws Exception {
                        try {
                            throw new Exception("Boom");
                        } catch (Exception exc) {
                            System.out.println(exc.getMessage() + " handled");
                        return null;
                Task<Void> exceptionThrowingTask = new Task<Void>() {
                    @Override
                    protected Void call() throws Exception {
                        throw new Exception("Boom");
            //            return null;
                final BorderPane root = new BorderPane();
                final TextArea textArea = new TextArea();
                root.setCenter(textArea);
                primaryStage.setScene(new Scene(root, 600, 400));
                primaryStage.show();
                registerHandlers(exceptionHandlingTask, "exceptionHandlingTask", textArea);
                registerHandlers(exceptionThrowingTask, "exceptionThrowingTask", textArea);
                Thread t1 = new Thread(exceptionHandlingTask);
                Thread t2 = new Thread(exceptionThrowingTask);
                t1.start();
                t2.start();
            private void registerHandlers(final Task<Void> task, final String msg, final TextArea textArea) {
                task.setOnFailed(new EventHandler<WorkerStateEvent>() {
                    @Override
                    public void handle(WorkerStateEvent event) {
                        textArea.appendText(msg + " failed\n");
                task.setOnSucceeded(new EventHandler<WorkerStateEvent>() {
                    @Override
                    public void handle(WorkerStateEvent event) {
                        textArea.appendText(msg +  " succeeded\n");

  • Installation of IPC AP 7.0 Jar is getting Failed when uploading in CRM

    Hello Experts,
    we did some changes in the previosly uploded version of IPC AP 7.0  customer user exit Jar file in eclipse.
    While uploading the new modified jar through transaction /SAPCND/UE_DEV in CRM we are getting error :" installation of module <Jar file name > has failed ".
    when we checked the logs in SM 53 we seen the below mentioned error:
    Message: Exception of type com.sap.sql.log.OpenSQLException caught: Exception of type com.sap.sql.sqlparser.CommonSQLParserException: - statement "DELETE FROM "SVMCRT_MOD_TR_T" WHERE "MODULE_NAME" LIKE ? ESCAPE ^ (reason: Modification of ABAP tables is not permit ted)" is not supported
    caught: - statement "DELETE FROM "SVMCRT_MOD_TR_T" WHERE "MODULE_NAME" LIKE ? ESCAPE ^ (reason: Modification of ABAP tables is not permitted)" is not supported
    --> com.sap.sql.log.OpenSQLException: Exception of type com.sap.sql.sqlparser.CommonSQLParserException: - statement "DELETE FROM "SVMCRT_MOD_TR_T" WHERE "MODULE_NAME" LIKE ? ESCAPE '^' (reason: Modification of ABAP tables is n" is not suppor ted
    caught: - statement "DELETE FROM "SVMCRT_MOD_TR_T" WHERE "MODULE_NAME" LIKE ? ESCAPE '^' (reason: Modification of ABAP tables is not permitted)" is not supported
    at com.sap.sql.log.Syslog.createAndLogOpenSQLException(Ljava/lang/Class;Ljava/lang/String;[Ljava/lang/Object;)Lcom/sap/sql/log/OpenSQLException;(Syslog.java:85)
    at 
    if  required i can post the complete stack trace.
    any inputs/suggestions are most welcome.
    Thanks & regards,
    Siddharth

    Hi Mark,
    Yesterday after Posting the thread we found the same Note ,Issue occured because of  JAVA write access was not enabled on the table ,After enabling it as mentioned in SAP Note, Jar file get successfully uploaded.
    Thanks for your Help also.
    Regards,
    Siddharth

  • Insert statement in when-checkbox-checked trigger doesn't work

    in a when-checkbox-checked trigger, I wrote the follwing code :
    IF :sunday = 'Y' THEN
    msg_alert('Y','I',false);
    pkg_var.v_day_count := pkg_var.v_day_count + 1;
    msg_alert('1','I',false);
    :schtm_skmk.day_id := '1';
    msg_alert('2 ',I',false);
    INSERT INTO schtm      
    (ROUTE_ID, DAY_ID, FLIGHT_ID)
    VALUES
    (:schmf.ROUTE_ID, :schtm_skmk.day_id, 1);
    COMMIT;
    msg_alert('end insert schtm','I',false);
    END IF;     
    if the checkbox is checked, I assigned value '1' to day_id. Then, I want to insert a row into table SCHTM. But, the insert statement fail. The msg_alert '2' pop up. The msg_alert 'end insert schtm' does not pop up, meaning the insert statement fail. It also fail after I replace the insert statement with the exact value of the item. But if I execute this statement in SQL plus, it insert a row into the database.
    What is strange here is it did work before, I successfully insert 2 rows into database. But when I test it again just a while later, it never work anymore.
    Please help.
    Thanks,
    Shu Wen

    It seems that you have missed ELSE. By the way there is only one INSERT ...

  • 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.

  • Script fails when passing values from pl/sql to unix variable

    Script fails when passing values from pl/sql to unix variable
    Dear All,
    I am Automating STATSPACK reporting by modifying the sprepins.sql script.
    Using DBMS_JOB I take the snap of the database and at the end of the day the cron job creates the statspack report and emails it to me.
    I am storing the snapshot ids in the database and when running the report picking up the recent ids(begin snap and end snap).
    From the sprepins.sql script
    variable bid number;
    variable eid number;
    begin
    select begin_snap into :bid from db_snap;
    select end_snap into :eid from db_snap;
    end;
    This fails with the following error:
    DB Name DB Id Instance Inst Num Release Cluster Host
    RDMDEVL 3576140228 RDMDEVL 1 9.2.0.4.0 NO ibm-rdm
    :ela := ;
    ERROR at line 4:
    ORA-06550: line 4, column 17:
    PLS-00103: Encountered the symbol ";" when expecting one of the following:
    ( - + case mod new not null &lt;an identifier&gt;
    &lt;a double-quoted delimited-identifier&gt; &lt;a bind variable&gt; avg
    count current exists max min prior sql stddev sum variance
    execute forall merge time timestamp interval date
    &lt;a string literal with character set specification&gt;
    &lt;a number&gt; &lt;a single-quoted SQL string&gt; pipe
    The symbol "null" was substituted for ";" to continue.
    ORA-06550: line 6, column 16:
    PLS-00103: Encountered the symbol ";" when expecting one of the following:
    ( - + case mod new not null &lt;an identifier&gt;
    &lt;a double-quoted delimited-identifier&gt; &lt;a bind variable&gt; avg
    count current exists max min prior sql stddev su
    But when I change the select statements below the report runs successfully.
    variable bid number;
    variable eid number;
    begin
    select '46' into :bid from db_snap;
    select '47' into :eid from db_snap;
    end;
    Even changing the select statements to:
    select TO_CHAR(begin_snap) into :bid from db_snap;
    select TO_CHAR(end_snap) into :eid from db_snap;
    Does not help.
    Please Help.
    TIA,
    Nischal

    Hi,
    could it be the begin_ and end_ Colums of your query?
    Seems SQL*PLUS hs parsing problems?
    try to fetch another column from that table
    and see if the error raises again.
    Karl

  • HT1222 After downloading this, it tells my iphone to resync, and it cant sync with the computer. it gives no information as to why, and I can't start up my iphone, it's in the same syncing state as when i first bought it.

    It's what it says in the question above; after downloading the newest update from apple my Iphone 4 goes into a state where i must resync it with my computer to continue use.  While syncing, about 2/3 of the way done, it says there was an error with the sync, and all of the memory will be erased.  Without my approval, it erased the memory, and now it is in the same "must sync" state as when I first bought it, about one week ago.  I tried syncing on so far two computers, and they both failed, with the same error.  No error code or anything like that is given.
    Help please!!

    Place your phone in DFU mode (search google for instructions) and restore as new.
    If this doesn't work, you'll need to bring your phone into Apple.

  • WebI does not return failed when scheduling a report which only holds parti

    WebI does not return failed when scheduling a report which only holds partial results.
    We have scheduled reports which take some time to run. When they are scheduled they sometimes show successful even though the report only holds partial results. The only indication is when you open the report as webi report you see the warning that it holds partial results.
    When running the report manually, it works file.
    The issue is not in the no of rows in the universe settings because we this unselected. The issue is that it times out.
    The reason that it times out is that a lot of resources are used for loading and processing data when the report is scheduled. When running it manually, it works because at this time the serverload is less. the time in the universe is set to 10 min.
    The version we have is BOXIR2-SP4.
    Ok. Issue identified.
    The question is - why is the report successful when it holds partial results? If this is normal behavior, noone can really trust the scheduled reports, especially when you save it to excel and send it by mail.
    Is there a solution for this except increasing the allowed query time which would not solve the issu but only allow more reports to complete?
    Edited by: Karlgren Michael on Sep 17, 2009 1:22 PM

    Hi ,
    Currently this problem exists in XI R2. This feature will be part of thenext Service Pack i.e XI R2 SP6.
    This CER will be delivered from IDC Webi and BIP Platform as part of Jupiter Sp6.
    Problem Statement:
         Scheduled WebI Reports which are partially refreshed are distributed to the destinations for Users to View and make decisions. These users arenu2019t usually aware that these reports have u201CPARTIAL RESULTSu201D
    Recomended Solution:
        Allow the Schedule Creator / Modifier to set a parameter to stop the distribution of the u201CPARTIALLY REFRESHEDu201D WebI report.
    Thanks
    Salini

  • Import error imp-00017: following statement failed with oracle error 1659:

    Hi all,
    I am trying to import a file (dmp) which is of 1.63GB size,
    when I type
    imp
    dbname/pwd@db
    c:\filepath
    30720
    no
    no
    yes
    yes
    yes
    I am getting the error imp-00017: following statement failed with oracle error 1659:
    -- end it says Ora-01659 unable to allocate minextents beyond 1 in tablespace USERS
    --unable to create INITIAL extent for segment in tablespace USERS
    --import terminated successfully with warnings
    when I looked into
    select maxbytes,file_name from dba_data_files where tablespace_name='USERS';3.4360+10 c:\oracle\product\10.2.0\oradata\orcl\users01.dbf
    kindly help me in solving this is.
    Regards,
    aak
    Edited by: AAK 460425 on Apr 12, 2009 6:33 PM

    Thanks,
    select bytes from user_free_space where tablespace_name='USERS'
    BYTES
    458752
    720896
    458752
    655360
    43384832
    is the size less?
    My apology I have updated this in the below thread, which is same as this one.
    Re: Import error

  • Wcf Data Service fails when more than 8properties  in the 'select=' portion

    Hi:
    I am using WCF Data Service and Oracle
    EF Provider is ODAC11.2 Release 4
    Wcf Data Service fails when more than 8 properties are specified in the 'select=' portion of the URI
    here is my code
    var q = from c in this.ctx.SALESORDER_ITEM
    select new
    c.SORDERDETAILID,
    c.IID,c.DMFLAG,c.OWNERID,c.SKUID,c.SKU_ID,c.TRADENO,c.SOURCEID,c.SORDERID
    excetion:
    InvalidOperationException: An error occurred for this query during batch execution. See the inner exception for details
    The inner exception is null, but the DataServiceClientException states: Value cannot be null Parameter name: value
    the exception is thrown in base.OnStartProcessingRequest(args) method (overridden).
    Here is the call stack as well:
    at System.Data.Services.WebUtil.CheckArgumentNull[T](T value, String parameterName)
    at System.Data.Services.Internal.ProjectedWrapper.set_PropertyNameList(String value)
    at lambda_method(Closure , Shaper )
    at System.Data.Common.Internal.Materialization.Coordinator`1.ReadNextElement(Shaper shaper)
    at System.Data.Common.Internal.Materialization.Shaper`1.SimpleEnumerator.MoveNext()
    at System.Data.Services.Internal.ProjectedWrapper.EnumeratorWrapper.MoveNext()
    at System.Data.Services.DataService`1.SerializeResponseBody(RequestDescription description, IDataService dataService)
    at System.Data.Services.DataService`1.HandleNonBatchRequest(RequestDescription description)
    at System.Data.Services.DataService`1.HandleRequest()
    Is there a max number of properties in $select statement
    I think may be it is oracle provider's problem ,but i don't konw how to debug it Can anyone help me
    Any help is greatly appreciated

    I believe the null/empty string issue is unrelated to the 8 column issue, at least for ODP.NET. For example, let's take the original query in the OBE:
    http://.../yoursvcfile.svc/EMPLOYEES?$select=EMPLOYEE_ID,FIRST_NAME,LAST_NAME,SALARY,DEPARTMENT_ID,DEPARTMENT,EMAIL,PHONE_NUMBER,MANAGER_ID
    Let's make all the columns selected not nullable. You can do this with the Oracle Dev Tools. Specifically, PHONE_NUMBER and FIRST_NAME are the only nullable fields. I make them non-nullable and re-run the query and the same error occurs. Thus, these values should never be made null. Moreover, in all 107 rows, none of these row values consist of empty strings anyway.
    Looking into the problem further, WCF DS is calling methods in the System.Data.Services.Internal namespace.
    http://msdn.microsoft.com/en-us/library/system.data.services.internal.aspx
    Specifically, we see your issue when the ProjectedWrapperMany method is called. You will notice that there is ProjectedWrapper0, ProjectedWrapper1...ProjectedWrapper8 methods also present in the same namespace. As soon as the number of columns exceeds 8, ProjectedWrapperMany is called and we see the error. We're going to ask MS to help analyze the issue since this is an .NET-internal method being called.

  • Calling another function if upate statement fails

    Hi there,
    I have written an update procedure and insert procedure. Is there a way of calling another function if the update statement fails? Thanks a lot for your help.
    Chris
    procedure update_costing(in_period in DATE,
                   in_project_id IN VARCHAR2,
                   in_user_id IN VARCHAR2,
                   in_thu IN VARCHAR2,
                   in_fri IN VARCHAR2,
                   in_sat IN VARCHAR2,
                   in_sun IN VARCHAR2,
                   in_mon IN VARCHAR2,
                   in_tue IN VARCHAR2,
                   in_wed IN VARCHAR2)
         UPDATE TBL_COSTING
              SET
                   HOURS_THU = to_date (in_thu, 'HH24:MI'),
                   HOURS_FRI = to_date (in_fri, 'HH24:MI'),
                   HOURS_SAT = to_date (in_sat, 'HH24:MI'),
                   HOURS_SUN = to_date (in_sun, 'HH24:MI'),
                   HOURS_MON = to_date (in_mon, 'HH24:MI'),
                   HOURS_TUE = to_date (in_tue, 'HH24:MI'),
                   HOURS_WED = to_date (in_wed, 'HH24:MI'),
                   WHERE PERIOD = in_period
         AND PROJECT_ID = in_project_id
         AND USER_ID = in_user_id;
    EXCEPTION
    --CALLL HERE THE INSERT FUNCTION WITH SAME DATAMEMBERS
    SOMETHING LIKE THIS---
    WHEN others then
         insert_costing(in_period, in_project_id, in_user_id ,in_thu,in_fri,in_sat,in_sun,in_mon,in_tue,in_wed ,in_submit);
    COMMIT;
    END update_costing;

    begin
    UPDATE statement
    IF SQL%ROWCOUNT =0
    then
    INSERT statement|procedure
    end if;
    end;
    /Hi,
    i have a simple doubt over here, i read somewhere that cursor attributes can be used only as long as the cursor is open, then in the above case whiel doing the update operation, oracle implicitly will open an cursor and will do the operation and then will close the cursor, then how does SQL%ROWcount works???please revert...
    cheere

  • List data validation failed when creating a new list item but does not fail when editing an existing item

    Dear SharePoint Experts,
    Please help.
    Why does my simple formula work in Excel but not-work in SharePoint?
    Why does this formula...
    =IF([Request Type]="Review",(IF(ISBLANK([Request Date]),FALSE,TRUE)),TRUE)
    ...work in Excel but fail when I try to use it in SharePoint?
    The intent of this formula is the following...
    If the field "Request Type" has the value "Review" and the field "Request Data" is blank then show FALSE, otherwise show TRUE.
    SharePoint saves the formula, but when a list item is saved where the formula is implemented, (under List Settings, List Validation), SharePoint does not, say anything other than that the formula failed.
    Note that the "list data validation failed" error only happens when I am creating a new item-- the formula above works just fine when one is trying to Save on the edit form. 
    Can you help?
    Thanks.
    -- Mark Kamoski

    Dear Jason,
    I appreciate your efforts.
    However, it seems to me that this statement of yours is not correct...
    "If it meet the validation formula, then you can new or edit the item, otherwise, it will throw the 'list data validation failed' error, it is by design".
    I believe this is NOT the answer for the following reasons.
    When I create a new item and click Save, the validation error is "list data validation failed".
    When I edit an existing item and click Save, the validation error is "my custom error message" and this is, I believe, the way it needs to work each time.
    I think, at the core, the error my formula does not handle some condition of null or blank or other default value.
    I tried a forumla that casts the date back to a string, and then checked the string for a default value, but that did not work.
    I tried looking up the Correlation ID in the ULS when "list data validation failed" occurs, but that gave no useful information because, even though logging was set to Verbose, the stack trace in the error log was truncated and did not given any
    good details.
    However, it seems to me that SharePoint 2013 is not well-suited for complex validation rules, because...
    SharePoint 2013 list-level validation (NOT column-level validation) allows only 1 input for all the multi-field validation formulas in a given list-- so, if I had more than 1 multi-field validation rule to implement on a given list, it would need to be packed
    into that single-line-of-code forumla style, like Excel does. That is not practice to write, debug, or maintain.
    SharePoint 2013 list-level validation only allows 1 block of text for all such multi-field validation rules. So that will not work because I would have something like "Validation failed for one or more of the following reasons-- withdrawal cannot exceed
    available balance, date-of-birth cannot be after date-of-death,... etc". That will not work for me.
    The real and awesome solution would simply be enhancing SP 2013 so that column-level validation forumlas are able to reference other columns.
    But, for now, my workaround solution is to use JavaScript and jQuery, hook the onclick handler on the Save button, and that works good. The only problem, is that the jQuery validation rules run before any of the column-level rules created  with OOTB
    SP 2013. So, in some cases, there is an extra click for the enduser.
    Thanks,
    Mark Kamoski
    -- Mark Kamoski

Maybe you are looking for

  • Xilinks Compilation Error

    Hello guys, I Recently experienced a power outage when i was compiling FPGA VIs. Now every time i compile code the VI server generates an error when it reaches the stage of Generating the programming file. i have made an extract from both the xilinks

  • Number of Query parameters problem

    Ok, so I have a form that has always has one of two values filled in, but a different number of parameters in the rest. Example: The user will have to fillin (City) and (State), or (zipcode) to do a query. But they can also fill in the (numOfBedrooms

  • Any way to send a "forward" to multiple recipients and have each email addressed only to each individual?

    I want to forward an email to multiple recipients, but instead of putting them all in BCC:, I want all the recipients to get the forward addressed just to them so it looks personalized.  Any way to do this?

  • ACS with Aironet

    Hi, ACS has local database and Active-Directory Database for VPN Users.... Currently Aironet Access-point is acccessed via entering static password.. could like lan users to connect to access-point through ACS using Active Directory Database.... Is t

  • How can i know if submir program is finished

    Hello experts, I have a program that use SAP program in submit mode:   SUBMIT RSBDC_PROTOCOL                   WITH SESSION = 'MB_MI01' " Session name                   WITH FROM_DAT = SY-DATUM                   WITH TO_DAT   = SY-DATUM