Testing recovery process.

Hi All,
DB -10.2.0.2.0
We frequently perform database refreshes'es. this time, we have to perform time based refresh
till 31-aug-09 11:00AM. following are the sequence date and timestamp extracted from v$archived_log
in that case, whaich is the sequence, we have to use while performing time based recovery.
One more question, for database refresh, we move dbf's and archive fom source to target.
Now, before performing recovery, is there anyway to test out, weather we have required archives
and dbf's. I recently read Arup's book that we can do this, but I am not sure, weather this can
be achieved in user managed backups hot backups.
Also, after performing time based recovery, how
can we know, till what time the databsae being recovered.
You swift reply would be highly appricaited.
272193 30-08-2009 09:11:49
272194 30-08-2009 23:15:15
272195 30-08-2009 23:15:17
272196 31-08-2009 02:33:51
272197 31-08-2009 06:33:15
272198 31-08-2009 08:50:39
272199 31-08-2009 10:06:57
272200 31-08-2009 10:19:30
272201 31-08-2009 10:42:30
272202 31-08-2009 11:13:50
272203 31-08-2009 11:15:02
272204 31-08-2009 11:18:45
272205 31-08-2009 11:23:29hare krishna

RMAN> backup database;
Starting backup at 16-SEP-09
using channel ORA_DISK_1
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
input datafile file number=00001 name=/u01/app/oracle/oradata/mmi/system01.dbf
input datafile file number=00002 name=/u01/app/oracle/oradata/mmi/sysaux01.dbf
input datafile file number=00003 name=/u01/app/oracle/oradata/mmi/undotbs01.dbf
input datafile file number=00005 name=/u01/app/oracle/oradata/mmi/mydatafile.dbf
input datafile file number=00004 name=/u01/app/oracle/oradata/mmi/users01.dbf
channel ORA_DISK_1: starting piece 1 at 16-SEP-09
channel ORA_DISK_1: finished piece 1 at 16-SEP-09
piece handle=/u01/app/oracle/flash_recovery_area/MMI/backupset/2009_09_16/o1_mf_nnndf_TAG20090916T134511_5c19dv9q_.bkp tag=TAG20090916T134511 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:45
Finished backup at 16-SEP-09
Starting Control File and SPFILE Autobackup at 16-SEP-09
piece handle=/u01/app/oracle/flash_recovery_area/MMI/autobackup/2009_09_16/o1_mf_s_697729560_5c19gcmc_.bkp comment=NONE
Finished Control File and SPFILE Autobackup at 16-SEP-09
RMAN> sql 'alter system archive log current';
sql statement: alter system archive log current
RMAN> sql 'alter system archive log current';
sql statement: alter system archive log current
RMAN> sql 'alter system archive log current';
sql statement: alter system archive log current
RMAN> shutdown abort
Oracle instance shut down
RMAN> exit
Recovery Manager complete.
[oracle@khurram ~]$ rm -rf /u01/app/oracle/oradata/mmi/*
[oracle@khurram ~]$ rman target /
Recovery Manager: Release 11.1.0.6.0 - Production on Wed Sep 16 13:47:35 2009
Copyright (c) 1982, 2007, Oracle.  All rights reserved.
connected to target database (not started)
RMAN> startup nomount
Oracle instance started
Total System Global Area    1620115456 bytes
Fixed Size                     2144864 bytes
Variable Size                721421728 bytes
Database Buffers             889192448 bytes
Redo Buffers                   7356416 bytes
RMAN> restore controlfile from autobackup;
Starting restore at 16-SEP-09
using target database control file instead of recovery catalog
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=153 device type=DISK
recovery area destination: /u01/app/oracle/flash_recovery_area
database name (or database unique name) used for search: MMI
channel ORA_DISK_1: AUTOBACKUP /u01/app/oracle/flash_recovery_area/MMI/autobackup/2009_09_16/o1_mf_s_697729560_5c19gcmc_.bkp found in the recovery area
AUTOBACKUP search with format "%F" not attempted because DBID was not set
channel ORA_DISK_1: restoring control file from AUTOBACKUP /u01/app/oracle/flash_recovery_area/MMI/autobackup/2009_09_16/o1_mf_s_697729560_5c19gcmc_.bkp
channel ORA_DISK_1: control file restore from AUTOBACKUP complete
output file name=/u01/app/oracle/oradata/mmi/control01.ctl
output file name=/u01/app/oracle/oradata/mmi/control02.ctl
output file name=/u01/app/oracle/oradata/mmi/control03.ctl
Finished restore at 16-SEP-09
RMAN> alter database mount;
database mounted
released channel: ORA_DISK_1From another terminal come at SQL
[oracle@khurram ~]$ sqlplus / as sysdba
SQL*Plus: Release 11.1.0.6.0 - Production on Wed Sep 16 13:49:14 2009
Copyright (c) 1982, 2007, Oracle.  All rights reserved.
Connected to:
Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> set linesize 1000
SQL> select substr(name,1,50) fname,checkpoint_change#,last_change#,status
  2    from v$datafile;
FNAME                                              CHECKPOINT_CHANGE# LAST_CHANGE# STATUS
/u01/app/oracle/oradata/mmi/system01.dbf                      1350307              SYSTEM
/u01/app/oracle/oradata/mmi/sysaux01.dbf                      1350307              ONLINE
/u01/app/oracle/oradata/mmi/undotbs01.dbf                     1350307              ONLINE
/u01/app/oracle/oradata/mmi/users01.dbf                       1350307              ONLINE
/u01/app/oracle/oradata/mmi/mydatafile.dbf                    1350307              ONLINEhere you can see that within control file repositry the datafiles START SCN (CHECKPOINT_SCHANGE#) is 1350307,whenever checkpoints occur, Oracle writes a START SCN to the data file headers as well it writes the START SCN within controlfile for each datafile.The control file also maintains another SCN value for each data fil with START SCN is the STOP SCN, this STOP SCN is usually null (infinity) when yours database status is open and datafile status is online , the null status shows that recovery will start from START SCN and will goes to the end of redo thread.The STO SCN here is LAST_CHANGE#
RMAN> restore database;
Starting restore at 16-SEP-09
Starting implicit crosscheck backup at 16-SEP-09
allocated channel: ORA_DISK_1
channel ORA_DISK_1: SID=152 device type=DISK
Crosschecked 1 objects
Finished implicit crosscheck backup at 16-SEP-09
Starting implicit crosscheck copy at 16-SEP-09
using channel ORA_DISK_1
Finished implicit crosscheck copy at 16-SEP-09
searching for all files in the recovery area
cataloging files...
cataloging done
List of Cataloged Files
=======================
File Name: /u01/app/oracle/flash_recovery_area/MMI/autobackup/2009_09_16/o1_mf_s_697729560_5c19gcmc_.bkp
File Name: /u01/app/oracle/flash_recovery_area/MMI/archivelog/2009_09_16/o1_mf_1_1_5c19gzs5_.arc
File Name: /u01/app/oracle/flash_recovery_area/MMI/archivelog/2009_09_16/o1_mf_1_2_5c19h2m0_.arc
File Name: /u01/app/oracle/flash_recovery_area/MMI/archivelog/2009_09_16/o1_mf_1_3_5c19h4tk_.arc
using channel ORA_DISK_1
channel ORA_DISK_1: starting datafile backup set restore
channel ORA_DISK_1: specifying datafile(s) to restore from backup set
channel ORA_DISK_1: restoring datafile 00001 to /u01/app/oracle/oradata/mmi/system01.dbf
channel ORA_DISK_1: restoring datafile 00002 to /u01/app/oracle/oradata/mmi/sysaux01.dbf
channel ORA_DISK_1: restoring datafile 00003 to /u01/app/oracle/oradata/mmi/undotbs01.dbf
channel ORA_DISK_1: restoring datafile 00004 to /u01/app/oracle/oradata/mmi/users01.dbf
channel ORA_DISK_1: restoring datafile 00005 to /u01/app/oracle/oradata/mmi/mydatafile.dbf
channel ORA_DISK_1: reading from backup piece /u01/app/oracle/flash_recovery_area/MMI/backupset/2009_09_16/o1_mf_nnndf_TAG20090916T134511_5c19dv9q_.bkp
channel ORA_DISK_1: piece handle=/u01/app/oracle/flash_recovery_area/MMI/backupset/2009_09_16/o1_mf_nnndf_TAG20090916T134511_5c19dv9q_.bkp tag=TAG20090916T134511
channel ORA_DISK_1: restored backup piece 1
channel ORA_DISK_1: restore complete, elapsed time: 00:00:45
Finished restore at 16-SEP-09
SQL> select substr(name,1,50) fname,checkpoint_change#,last_change#,status
  2    from v$datafile;
FNAME                                              CHECKPOINT_CHANGE# LAST_CHANGE# STATUS
/u01/app/oracle/oradata/mmi/system01.dbf                      1350307              SYSTEM
/u01/app/oracle/oradata/mmi/sysaux01.dbf                      1350307              ONLINE
/u01/app/oracle/oradata/mmi/undotbs01.dbf                     1350307              ONLINE
/u01/app/oracle/oradata/mmi/users01.dbf                       1350307              ONLINE
/u01/app/oracle/oradata/mmi/mydatafile.dbf                    1350307              ONLINENow recover
RMAN> recover database;
Starting recover at 16-SEP-09
using channel ORA_DISK_1
starting media recovery
archived log for thread 1 with sequence 1 is already on disk as file /u01/app/oracle/flash_recovery_area/MMI/archivelog/2009_09_16/o1_mf_1_1_5c19gzs5_.arc
archived log for thread 1 with sequence 2 is already on disk as file /u01/app/oracle/flash_recovery_area/MMI/archivelog/2009_09_16/o1_mf_1_2_5c19h2m0_.arc
archived log for thread 1 with sequence 3 is already on disk as file /u01/app/oracle/flash_recovery_area/MMI/archivelog/2009_09_16/o1_mf_1_3_5c19h4tk_.arc
archived log file name=/u01/app/oracle/flash_recovery_area/MMI/archivelog/2009_09_16/o1_mf_1_1_5c19gzs5_.arc thread=1 sequence=1
archived log file name=/u01/app/oracle/flash_recovery_area/MMI/archivelog/2009_09_16/o1_mf_1_2_5c19h2m0_.arc thread=1 sequence=2
archived log file name=/u01/app/oracle/flash_recovery_area/MMI/archivelog/2009_09_16/o1_mf_1_3_5c19h4tk_.arc thread=1 sequence=3
unable to find archived log
archived log thread=1 sequence=4
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: failure of recover command at 09/16/2009 13:51:44
RMAN-06054: media recovery requesting unknown archived log for thread 1 with sequence 4 and starting SCN of 1350423
SQL> select substr(name,1,50) fname,checkpoint_change#,last_change#,status
  2    from v$datafile;
FNAME                                              CHECKPOINT_CHANGE# LAST_CHANGE# STATUS
/u01/app/oracle/oradata/mmi/system01.dbf                      1350423              SYSTEM
/u01/app/oracle/oradata/mmi/sysaux01.dbf                      1350423              ONLINE
/u01/app/oracle/oradata/mmi/undotbs01.dbf                     1350423              ONLINE
/u01/app/oracle/oradata/mmi/users01.dbf                       1350423              ONLINE
/u01/app/oracle/oradata/mmi/mydatafile.dbf                    1350423              ONLINEHere you can see that within controlfile repositry there is datafile header START SCN which was 1350307 after restore,when you started recovery now its
SCN is 1350423 which shows that yours recovery process start from SCN 1350307 and ends at 1350423.
Khurram

Similar Messages

  • Compaq CQ56 154 laptop windows 7 recovery process fails. PLEASE HELP

    Compaq CQ56 laptop windows 7 recovery process fails because RM component runtime and no valid RP index. PLEASE HELP
    I have tried the recovery process on this laptop over 10 times now and with multiple new hdds and it seems like it comes to a fail at the very end.I have posted the error log that I get. Please help me out in regards to this. 
    The process completes unit and at the very end the error log gives this:
    Error encountered during RM component run time            
    Please contact RM team for investigation            
                        CopyRight @   SRD.cpp :   12                      CopyRight @   SRD.cpp :   13 SRD 1.1.0.0115 System Recovery Deployment, provided by CyberLink. (cNB)       
                        CopyRight @    SRD.cpp :  14           DeployRp:etSRDMode @ DeployRp.cpp : 3571 SetSRDMode 1          
                            wmain @    SRD.cpp :  73 Executing call 'L"drp.SetConfigIni('deployrp.ini')"'        
            DeployRp:etectMedia @ DeployRp.cpp :  371 Start to detect disks ...         
                  DeployRp:etUp @ DeployRp.cpp :  630 Get User Partition drive letter : c.        
            DeployRp:etectMedia @ DeployRp.cpp :  563 Disk Index : [HDD] 0, [N/A] -1         
          DeployRp:etTargetDisk @ DeployRp.cpp :  571 Start to load ini ...          
                  DeployRp:etUp @ DeployRp.cpp :  630 Get User Partition drive letter : c.        
                 DeployRp:etBp @ DeployRp.cpp :  643 Start to find Build Partition drive letter.        
                  DeployRp:etBp @ DeployRp.cpp :  650 Build Partition drive letter : c.         
          BuildConfig::LoadConfig @ BuildConfig.cpp :   28 Loading C:\RM\Tools\DeployRP\build.ini ...        
          BuildConfig::LoadConfig @ BuildConfig.cpp :  111 C:\RM\Tools\DeployRP\build.ini loading complete.       
                            wmain @    SRD.cpp :  83 Executing call 'L"drp.LoadBuildIni()"'         
           DeployRp::CheckRpExist @ DeployRp.cpp :  713 Start to check whether Rp exists.        
           DeployRp::CheckRpExist @ DeployRp.cpp :  750 Recovery Partition doesn't exist.        
    DeployRp::CheckSystemRecoveryDoneFlag @ DeployRp.cpp : 757 Start to check whether SystemRecoveryDone.flg exists.     
    DeployRp::CheckSystemRecoveryDoneFlag @ DeployRp.cpp : 794 SystemRecoveryDone.flg doesn't exist.      
           DeployRp::InstallMSXML @ DeployRp.cpp : 1248 Start to install MSXML6.dll         
           DeployRp::InstallMSXML @ DeployRp.cpp : 1292 Install MSXML6.DLL complete.        
          DeployRp::CreateLangIni @ DeployRp.cpp :  331 Create Lang.ini command: C:\RM\Tools\DeployRP\CreateLangIni.exe c     
         DeployRp::CheckSSRDFlags @ DeployRp.cpp : 1044 Start to check if SSRD flags exist        
         DeployRp::CheckSSRDFlags @ DeployRp.cpp : 1061 SSRD flags do not exist         
         DeployRp::CheckSSRDFlags @ DeployRp.cpp : 1063 Check if SSRD flags exist complete        
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1363 Creating BootRM.wim ...         
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1374 Start to do setting.         
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1377 SetWimImageDstPath.         
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1382 Check tool existence.         
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1385 Tool Path: c:\RM\Tools\opktools\dism.exe       
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1389 Dism.exe exists.         
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1392 SetWimMountPath.         
        CWimMgr:etWimMountPath @ WimMgr.cpp :  199 Wim File Mounting Path = C:\RM\Tools\DeployRP\mount\      
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1397 SetLanguagePacksPath.         
       DeployRp::CreateBootRMWim @ DeployRp.cpp : 1402 SetToolsPath.          
            CWimMgr:etToolsPath @ WimMgr.cpp :  213 [SetToolsPath] lpszToolsPath = c:\RM\Tools\opktools\      
          CWimMgr:etToolsPath @ WimMgr.cpp :  220 [SetToolsPath] m_szDISMExeFullPath = c:\RM\Tools\opktools\dism.exe     
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1406 Setting complete.         
       DeployRp::CreateBootRMWim @ DeployRp.cpp : 1411 Start to do Initialization.         
             CWimMgr::InitWimMgr @ WimMgr.cpp :  358 Windows PE Source Path = c:\RM\RP\sources\boot.wim      
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1420 Initialization complete.         
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1423 Start to mount WIM image.        
           CWimMgr::MountWimImage @ WimMgr.cpp :  437 Temp Working Path = C:\RM\Tools\DeployRP\temp\      
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1426 Mount WIM image complete.        
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1431 Start to setup language packs...        
       DeployRp::GetSupportedLang @ DeployRp.cpp : 1639 Lang.ini path: c:\RM\Tools\DeployRp\lang.ini       
       DeployRp::GetSupportedLang @ DeployRp.cpp : 1678 Supported Languages :           
        CWimMgr:etWinPELanguage @ WimMgr.cpp : 1134 CWimMgr:etWinPELanguage - Enter       
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1437 Setup language packs complete.        
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1443 Start to setup tool's language packages...       
            CWimMgr:etupPackage @ WimMgr.cpp : 1327 Package does not exist: c:\RM\Tools\DeployRp\WinPE_LangPacks\64\winpe-setup.cab   
            CWimMgr:etupPackage @ WimMgr.cpp : 1327 Package does not exist: c:\RM\Tools\DeployRp\WinPE_LangPacks\64\winpe-Scripting.cab   
            CWimMgr:etupPackage @ WimMgr.cpp : 1327 Package does not exist: c:\RM\Tools\DeployRp\WinPE_LangPacks\64\winpe-SRT.cab   
            CWimMgr:etupPackage @ WimMgr.cpp : 1327 Package does not exist: c:\RM\Tools\DeployRp\WinPE_LangPacks\64\winpe-WMI.cab   
            CWimMgr:etupPackage @ WimMgr.cpp : 1327 Package does not exist: c:\RM\Tools\DeployRp\WinPE_LangPacks\64\winpe-wds-tools.cab   
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1450 Setup tool's language packages complete.       
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1452 Start to un-mount WIM image...        
        DeployRp::CreateBootRMWim @ DeployRp.cpp : 1455 Un-mount WIM Image complete.        
            DeployRp::CalculateRp @ DeployRp.cpp : 1696 Start to estimate recovery partition size ...       
            DeployRp::CalculateRp @ DeployRp.cpp : 1709 base.wim.wim size : 12452203405 bytes.        
            DeployRp::CalculateRp @ DeployRp.cpp : 1725 install.log file size : 623780 bytes.        
            DeployRp::CalculateRp @ DeployRp.cpp : 1735 WinRE and WinPe files size : 281055618 bytes.       
            DeployRp::CalculateRp @ DeployRp.cpp : 1740 RM Software size : 63933517 bytes.        
            DeployRp::CalculateRp @ DeployRp.cpp : 1745 BootRM.wim size : 268793098 bytes.        
            DeployRp::CalculateRp @ DeployRp.cpp : 1750 Patch Folder size : 369308088 bytes.        
            DeployRp::CalculateRp @ DeployRp.cpp : 1755 File4Rp Folder size : 0 bytes.         
            DeployRp::CalculateRp @ DeployRp.cpp : 1761 Extra space : 2371154178 bytes.        
            DeployRp::CalculateRp @ DeployRp.cpp : 1766 Prevented Extra size : 0 bytes.        
            DeployRp::CalculateRp @ DeployRp.cpp : 1776 Recovery Partition estimated size : 15807695464 bytes.      
            DeployRp::CalculateRp @ DeployRp.cpp : 1777 Recovery partition estimation complete.        
               DeployRp::CreateRp @ DeployRp.cpp : 2072 Start to create recovery partition ...        
                    DetToolRpInfo @ DeployRp.cpp :  122 PartitionCount: 4. PartitionType: 0. PartitionNumber: 0. PartitionStartAddr: 0 bytes. PartitionLength: 0 bytes  
                    DetToolRpInfo @ DeployRp.cpp :  122 PartitionCount: 4. PartitionType: 12. PartitionNumber: 3. PartitionStartAddr: 79917219840 bytes. PartitionLength: 108093440 bytes
                    DetToolRpInfo @ DeployRp.cpp :  122 PartitionCount: 4. PartitionType: 7. PartitionNumber: 2. PartitionStartAddr: 209715200 bytes. PartitionLength: 73013395456 bytes
                    DetToolRpInfo @ DeployRp.cpp :  122 PartitionCount: 4. PartitionType: 7. PartitionNumber: 1. PartitionStartAddr: 1048576 bytes. PartitionLength: 208666624 bytes
                    DetToolRpInfo @ DeployRp.cpp :  156 Can't find valid Rp index.         
               DeployRp::CreateRp @ DeployRp.cpp : 2090 Invalid Rp index          
                            wmain @    SRD.cpp :  93 Executing call 'L"drp.Deploy()"'         
                            wmain @    SRD.cpp :  38 Output            
    ERROR: call L"drp.Deploy()" failed.             
                           wmain @    SRD.cpp :  38 Output - Returned HRESULT = 0xe0ef002f    

    Hello k877
    I am sorry to hear you are having issues reinstalling your operating system. I am providing you with a link here to a document titled Recovery Disk Creation Error Codes (Windows 7). Now document is for creating the recovery disks but the error is showing up in your error log (0xe0ef002f). The error according to the document is the File/directory does not exist. It looks like a function call Deploy() is attempting to access this File/directory and is unable to.
    This leads me to think that it is the disks that you are using. It would stand to reason anyways as you state you have tried this on multiple hard drives. A good test would be to check to see if your error in the error log is the same every time. If it is happening at the same point each time then simply order a new set of discs from here.
    I hope this resolves your installation issue. Thank you for posting your question on the HP Forums. Have a great day!
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    Dunidar
    I work on behalf of HP
    Find out a bit more about me by checking out my profile!
    "Customers don’t expect you to be perfect. They do expect you to fix things when they go wrong." ~ Donald Porter

  • Start recovery process on standby database after Windows reboot

    Hi all,
    I have a data guard configuration on Oracle 10.2.0.4 for Windows.
    What I need is to mount and start recovery process automatically after Windows Server restart.
    How can I do that ?
    Thanks in advance.

    Here's what I found :
    sleep 60
    REM Start the database
    %ORACLE_HOME%\bin\sqlplus -s "/ as sysdba" @startup.sql
    exit
    startupmount.sql -- Copy this under ORACLE_HOME/bin directory
    -- start the database
    startup mount
    alter database recover managed standby database disconnect from session;
    exitSorry, no way to test on my end.
    The other thought is to hack oradim
    But I'm thinking this might only do the startup mount.
    Best Regards
    mseberg
    Edited by: mseberg on Feb 15, 2012 1:10 PM
    This would need some work but it may help
    @echo off
    sc query "OracleOraDb11g_home1TNSListener" | findstr /i running
    IF "%ERRORLEVEL%"=="0" (GOTO :RUNNING) ELSE (GOTO :STOPPED)
    :STOPPED
    ECHO NOT RUNNING
    net start "OracleOraDb11g_home1TNSListener" | sc query "OracleServiceSCT" | findstr /i running | if NOT "%errorlevel%"=="0" net start oracleservicesct
    GOTO :END
    :RUNNING
    ECHO RUNNING
    net stop "OracleOraDb11g_home1TNSListener" | sc query "OracleServiceSCT" | findstr /i running | if "%errorlevel%"=="0" net stop oracleservicesct
    GOTO :END
    :ENDEdited by: mseberg on Feb 15, 2012 1:17 PM

  • Recovery processes

    Hi All,
    Please help me in solving below issue
    Recovery processes
    A recovery process needs to be developed in B2B
    PO transaction or PO change errors out in B2B
    PO changes which updates the above PO is received
    The recovery process must insure that:
    a.     Dependent transactions to the errored transaction are not sent out of sequence
    b.     Once the correction is made to the transaction that has dependent all transactions are to be sent in the correct sequence

    Hi CNU,
    I reviewed the log you sent. Your B2B is not at all trying to send back the MDN because incoming message errored out before agreement identification with error "AIP-50083: Document protocol identification error". This error is coming beacuse your supplier is not sending payload in proper format (as you mentioned, he is sending only "this is a test file").
    If you want to do a connectivity test, please ask your supplier to send a message from his B2B and this message should be in a proper format and all the required headers should be present.
    and also while i am trying to do telent to that server it showing below result....The telnet results show that your machine is not able to connect to the target endpoint. This may be due to that your supplier has a firewall which is not allwing you to access that link. Make sure that your supplier has opened the port (at his firewall) for your B2B system's IP range. This is a typical n/w issue.
    Regards,
    Anuj

  • Toshiba A105 BIOS Recovery Process Questions

    Hi!
    Ive got a Toshiba Laptop A105-S4284, Model #: PSAA8U-0FH02K that froze while trying to flash the BIOS. Now, when I try to boot it up, it gets stuck in the same place it did during the flashing; on the Toshiba splash screen with the status bar at the bottom showing about 20% complete. Options available on this screen are: Press F2 for System Settings and F12 for Boot Menu. Pressing F2 results in a beep and the status bar is replaced with the text "Please Wait..." but nothing else happens no matter how long I wait. Pressing F12 doesnt do anything. Pressing ESC takes me to a screen that shows the typical system info -- Phoenix Technologies Version 6.00; Intel Calistoga CRB.T3A Reference BIOS; VERSION.MAK 1.53. It looks like its at least partially POSTing since it shows CPU, Cores, No TPM or TPM has a problem, and system RAM and stops there. I cant get into the BIOS and cant boot into Windows.
    Ive read the posts on here regarding the BIOS Recovery Process and was hoping someone could provide some clarification for me, especially since Ive already waited a week with no reply on another tech support site forum. :-(
    Anyways... Ive downloaded the Crisis Recovery.zip files to create a Recovery Disk and am trying to follow the instructions.
    There are a bunch of files in the .zip and Im not sure exactly which files I need to have on the boot disk Im creating.
    The files in the .zip are:
    - crisboot.bin
    - CRISDISK.BAT
    - makeboot.exe
    - minidos.sys
    - phlash16.exe (actually PHLASH16 version 1.6.5.4)
    - wincris.exe
    - wincris.hlp
    Ive downloaded the BIOS Update from Toshibas website for the A105-S4284. Which file do I need to rename to BIOS.WPH and add to my Recovery Disk directory? Do I want "s10gm600.rom" or "1988d600.ima"? I extracted the file from the bootable BIOS installation diskette (1988d600.exe) to get the 1988d600.ima file.
    I ran wincris.exe and only the following files end up in the directory Ive designated for my Recovery Disk:
    - BIOS.WPH
    - MINIDOS.SYS
    - PHLASH16.EXE
    Do I need any of the other files from the original .zip?:
    - crisboot.bin
    - CRISDISK.BAT
    - makeboot.exe
    - wincris.exe
    - wincris.hlp
    If someone could provide some clarification on which files to use and most importantly, if those are the correct files for the laptop Im trying to fix. I think all the posts Ive read are for laptops newer than this one and it seems the secret to succeeding at recovering a BIOS is using the CORRECT files. Ive searched all over and cant find any posts from someone with an A100/A105 who has been able to do a BIOS Recovery from a CD, USB floppy or USB flash drive.
    Is there ANY hope?
    Thanks in advance for your time and assistance with this; its GREATLY appreciated. 
    Sarah ;-) 

    Hi Sarah,
    I had the same thing happen to my A105 4094.  I've looked at some of the other blogs, but I'm not sure if I should try the corrective action they suggest.  Not sure how common the different models are. 
    I'm going to keep trying to resolve this.  If I find something that works, I'll write again and let you know.  Please do the same for me and other A105 owners.
    Thanks,
    Jamie

  • Problems with Satellite L775D-S730​5 System Recovery Process

    1.  Grandson accidentally erased 500GB internal hard drive. Recovery partition was not available.  Ordered, paid for and received Toshiba "SW Media-DVD-SATELLITE-L775-Windows 7 64 bit Home Premium-EN" recovery media.
    2.  While going through recovery process (3 times) to "Restore to Factory Out of the Box Settings" using Disk 1 of 4 - received "can't read from source file or disk" read errors from the following four boot related files:
    (a)  Boot64.WIM, Type: WIM File,  Size: 142 MB,  Date Modified: 11/3/11 12:28pm
    (b)  BCD,  Type:  File,  Size:  256 Kb,  Date Modified: 11/4/10 5:52pm
    (c)  Boot.SDI,  Type:  SDI File,  Size:  3.02 MB,  Date Modified: 11/4/10  6:18pm
    (d)  EFTSBoot,  Type:  MS-DOS Application,  Size:  4.00 Kb,  Date Modified:  11/4/10 5:52pm
    (e)  At end of Disk 1 recovery process received error - Toshiba Recovery Wizzard INITRECAREA.EXE - Application Error.  "The instruction at 0x75D5FF26 reference memory at 0x01D700.  The required data was not placed into memory because of an I/O error status of 0xc000009c."  The Recovery Process was terminated due to Error 9c.  Select (Finish).
    3.  Reported issue to Toshiba Support - who sent a new set of recovery media to verify if either defective recovery media or defective installed 500 GB hard drive.
    4.  Repeated recovery process (3 times) with new media set - had exact same results as above.  Assumed had internal hard disk problem according to Toshiba Support.
    5.  Ordered, received and installed new 1 Terabyte Toshiba 2.5 inch internal hard drive (PH2100U-1I54).  Reset BIOS to Default (F2, F9, F10) and system recognized new hard drive as MQ01ABD100.
    6.  Repeated recovery process (3 times each) with both sets of recovery media - had exact same results as above.
    7.  Reported issue to Toshiba Support and asked because obtained same "can't read boot related source file errors" on two sets of recovery media with two different hard drives - was there a possibility of defective recovery media, or some other problem?
    8.  Toshiba Support would not acknowledge and indicated could not send another recovery media set because had already sent two.  Also indicated new hard drive was probably improperly installed (because of configuration issues) and recommended seek local technical assistance.
    9.  Sought local technical assistance and was not able to recover system using Toshiba recovery media (said to be defective).  Verified sucessful installation of internal hard drive and no other laptop problems.
    10.  Able to re-install system using Windows 7 Professional installation CD, downloading YTD Toshiba BIOS and hardware drivers, and installing latest ATI video/graphics drivers.      

    I understand the issue you're having & realize that it's a frustrating experience going through this. Can't understand why it didn't work with the original hard drive, unless it had some bad sectors or possibly even bad RAM. The tech who checked it out would have (or should have) caught any RAM issues.
    However, on some systems, an extra DVD should be in the ordered recovery set in case a new or different size HDD is used, I had this experience with HP. Installed a 750GB WD Caviar Black in place of the OEM supplied 320GB Caviar Blue, my created recovery DVD's (3) wouldn't do the job. HP provided me a new set with the 4th DVD for $16. It worked. I didn't realize it until later, the ISO for that issue could have downloaded from the site. My fault for not checking.
    Makes me wonder if this was the case in your situation. This doesn't happen often, but when it does, that extra DVD is needed.
    http://h10025.www1.hp.com/ewfrf/wc/softwareDownloa​dIndex?softwareitem=pv-80183-1&cc=us&dlc=en&lc=en&​...
    At any rate, glad to hear that you got it working, though probably your complete utility package wasn't installed. More than likely enough to be OK though, some of these options are seldom used, & are simply using drive space, especially those with SSD's. I just clean installed Windows 8 Pro onto my Toshiba A665-S6086 & after using the Toshiba Windows 8 Upgrade Assistant to install the needed software (I chose all), it's the largest Windows 8 Pro install that I've done (after all updates/apps were installed). Usually less than 30GB is used, counting Office 2010 Pro Plus, this one is 38GB, was 44GB until the temp files & restore points except the last were deleted.
    Best of Luck,
    Cat

  • Exchange Server 2010 SP3 Databases are not mounting after the recovery process

    Hi,
    We are using Exchange server 2010 SP3 in our office. Databases are stored in an ISCSI drive mapped with the exchange. We are taking daily full backup of my Exchange server using Symantec Backup exe 2012. As a testing purpose I created a test environment
    same like my existing live environment to check the disaster recovery and backup. Thankfully disaster recovery worked well and I am able to open the exchange management console and powershell. But I am not able to mount the recovered databases ending
    with an error saying "Couldn't mount the database that you specified. Specified database: officialrecover; Error code:
    An Active Manager operation failed.........." and even I am not able to use the utility eseutil.exe to the database with an error "access to source database failed with jet error 1811". I am able to create a new database and mount
    it.
    I am using Windows Server Ent 2008 R2 64 Bit with Exchange Server 2010 SP3 in the Live environment with 3 partitions called C (279 GB), E (4.46 TB, ISCSI), F (976 GB) in my Live environment.
    For test it is Windows Server Ent 2008 R2 64 Bit with Exchange Server 2010 SP3 with 3 partitions C (240 GB), E (1.4 TB), & F (240 GB).
    Please help me with your valid comments to solve and mount the database and close the issue for ever.
    With Regards
    Jay

    Jared is correct that in essence the message is saying the DB cannot be found.
    When you restored to your recovery server are all the paths the same, i.e. if the DB existed on E:\XYZ on the production server it must be the same on the recovery server
    When you restored into the recovery site do you have AD restored into that site as well?
    For the recovery server are you using iSCSI storage for it as well?   If so am I correct to assume that you have copies of the databases just for use on this server and are not trying to reference the same instance of the DB from the production
    and test/recovery server?
    I have also seen an issue where DB's getting written to disk from Symantec mess up the header of the DB.  If you want to validate that the DB is actually intact and accessible you might want to check out our DigiScope product
    http://www.lucid8.com/product/digiscope.asp using a free DEMO license.  If it works i.e. you are able to mount in DigiScope from same location where its failing on the recovery server we know the
    DB your pointing at is good and accessible from the current path but something else is amiss in your configuration
    Search, Recover, & Extract Mailboxes, Folders, & Email Items from Offline Exchange Mailbox and Public Folder EDB's and Live Exchange Servers or Import/Migrate direct from Offline EDB to Any Production Exchange Server, even cross version i.e. 2003 -->
    2007 --> 2010 --> 2013 with Lucid8's
    DigiScope

  • T40 missing or corrupted \windows\system file after recovery process

    My T40 Thinkpad had a corrupt drive so I secured the recovery disks from IBM to rebuild the hard disk.  The recovery process seemed to work well, but when completed and prompted to remove all disks and reboot, the system booted and failed before Windows XP loaded with an error message that the windows\system file was corrupt or missing.  Any recommendations on how to succesfully recover?  Thanks.

    boot off the WinXP Disc and run a repair.  Did it mention the boot.ini file being corrupt, or something else?
    T61 15.4" T9300 (2.5GHz 6MB L2) Windows 7 Professional x64 4GB Memory, NVidia Quadro NVS 140M

  • How to test the process chains

    hi sap gurus,
    Can anybody tell me how to test the Process chains before i load real time data,i run process chains every morning 6.15 am,before that i want to test every process is linked to another.
    thanks in advance.

    Hi,
    Scheduling the process is the only way to check whether it is running fine or not. The process chains should be checked first in the Dev server and then in the QA server before transported to Prod.
    You can also check the process chain using the "check" button to see if the processes are in the proper sequence or not.
    There is a "log" button to keep track of the progress of the chain
    suresh

  • Recovery process applies old archivelogs on standby database

    Right now my standby database is in sync with my primary database and is waiting for the archived log sequeuence# 8378 to arrive.
    But when I stop the recovery process (alter database recover managed standby database cancel;) and re-start it (alter database recover managed standby database disconnect), it starts all over again and starts applying archive logs starting from the sequence# 5739 (looks like its scanning thru the logs). To catchup with primary it takes 2+ hours as it need to skim thru all the logs starting from 5739 to 8377.
    Please let me know if you need any further information to fix this.
    Thank you
    Sunny boy
    Details:
    Database version: 11.2.0.3
    OS : RHEL 5
    On Standby Database
    SQL> SELECT THREAD#, MAX(SEQUENCE#) AS "LAST_APPLIED_LOG"
    FROM V$LOG_HISTORY
    GROUP BY THREAD#; 2 3
    THREAD# LAST_APPLIED_LOG
    1 8377
    Alert log
    alter database recover managed standby database disconnect
    Attempt to start background Managed Standby Recovery process (MNODWDR)
    Tue May 08 16:13:09 2012
    MRP0 started with pid=28, OS id=26150
    MRP0: Background Managed Standby Recovery process started (MNODWDR)
    started logmerger process
    Tue May 08 16:13:15 2012
    Managed Standby Recovery not using Real Time Apply
    Parallel Media Recovery started with 8 slaves
    Waiting for all non-current ORLs to be archived...
    All non-current ORLs have been archived.
    Completed: alter database recover managed standby database disconnect
    Media Recovery Log +MNODW_FRA_GRP/mnodwdr/arch/mnodw_1_5739_765032423.arc
    Tue May 08 16:13:48 2012
    Media Recovery Log +MNODW_FRA_GRP/mnodwdr/archivelog/2012_04_19/thread_1_seq_5740.1466.781015749
    Media Recovery Log +MNODW_FRA_GRP/mnodwdr/archivelog/2012_04_19/thread_1_seq_5741.1468.781017203
    Media Recovery Log +MNODW_FRA_GRP/mnodwdr/archivelog/2012_04_19/thread_1_seq_5742.1474.781017203
    Media Recovery Log +MNODW_FRA_GRP/mnodwdr/archivelog/2012_04_19/thread_1_seq_5743.1473.781017203
    Media Recovery Log +MNODW_FRA_GRP/mnodwdr/archivelog/2012_04_19/thread_1_seq_5744.1477.781017203
    Media Recovery Log +MNODW_FRA_GRP/mnodwdr/archivelog/2012_04_19/thread_1_seq_5745.1478.781017203
    Media Recovery Log +MNODW_FRA_GRP/mnodwdr/archivelog/2012_04_19/thread_1_seq_5746.1472.781017203
    Media Recovery Log +MNODW_FRA_GRP/mnodwdr/archivelog/2012_04_19/thread_1_seq_5747.1475.781017203
    Media Recovery Log +MNODW_FRA_GRP/mnodwdr/archivelog/2012_04_19/thread_1_seq_5748.1469.781017203
    Media Recovery Log +MNODW_FRA_GRP/mnodwdr/archivelog/2012_04_19/thread_1_seq_5749.1470.781017203
    Tue May 08 16:13:57 2012
    Edited by: Sunny boy on May 8, 2012 5:29 PM

    Hello;
    V$LOG_HISTORY is the information from the control file. I would use a different query to check :
    From the Primary :
    SET PAGESIZE 140
    COL DB_NAME FORMAT A10
    COL HOSTNAME FORMAT A14
    COL LOG_ARCHIVED FORMAT 999999
    COL LOG_APPLIED FORMAT 999999
    COL LOG_GAP FORMAT 9999
    COL APPLIED_TIME FORMAT A14
    SELECT
       DB_NAME, HOSTNAME, LOG_ARCHIVED, LOG_APPLIED, APPLIED_TIME, LOG_ARCHIVED-LOG_APPLIED LOG_GAP
    FROM
    ( SELECT
       NAME DB_NAME
    FROM
       V$DATABASE
    SELECT
       UPPER(SUBSTR(HOST_NAME,1,(DECODE(INSTR(HOST_NAME,'.'),0,LENGTH(HOST_NAME), (INSTR(HOST_NAME,'.')-1))))) HOSTNAME
    FROM
       V$INSTANCE
    SELECT
       MAX(SEQUENCE#) LOG_ARCHIVED
    FROM
       V$ARCHIVED_LOG
    WHERE
       DEST_ID=1
    AND
       ARCHIVED='YES'
    SELECT
       MAX(SEQUENCE#) LOG_APPLIED
    FROM
       V$ARCHIVED_LOG
    WHERE
       DEST_ID=2
    AND
       APPLIED='YES'
    SELECT
       TO_CHAR(MAX(COMPLETION_TIME),'DD-MON/HH24:MI') APPLIED_TIME
    FROM
       V$ARCHIVED_LOG
    WHERE
       DEST_ID=2
    AND
       APPLIED='YES'
    );Change DEST_ID as needed for your system. I would also bump the parameter LOG_ARCHIVE_MAX_PROCESSES assuming its set to default to a higher value up to 30.
    Maybe instead of stopping the recovery process you should DEFER on the Primary
    alter system set log_archive_dest_state_2=defer;Change the _n from 2 to what your system requires. I use this and have watch DG catch up 200 archives in about 15 minutes.
    You have Standby Redo setup and are using the same size as your redo right?
    Have never seen the Standby try to apply twice.
    ORA-600 [3020] "Stuck Recovery" [ID 30866.1] ( But I do not see your issue )
    Metalink Note 241438.1 Script to Collect Data Guard Physical Standby Diagnostic Information
    Metalink Note 241374.1 Script to Collect Data Guard Primary Site Diagnostic Information
    Best Regards
    mseberg
    Edited by: mseberg on May 8, 2012 5:16 PM

  • Restart on primary database restarts the recovery process on standby

    We have a dataguar broker configuration running in maximum perfromance mode.
    Every time we start the primary database, the recovery process on standby gets restarted.
    I can consistently reproduce teh problem. Looks like expected behaviour.
    Even if standby is in read only mode and restart the primary database it bring the database back in recovery mode.
    Any explanation why oracle needs to do it?

    Neil_Arul wrote:
    We have a dataguar broker configuration running in maximum perfromance mode.
    Every time we start the primary database, the recovery process on standby gets restarted.
    I can consistently reproduce teh problem. Looks like expected behaviour.
    Even if standby is in read only mode and restart the primary database it bring the database back in recovery mode.
    Any explanation why oracle needs to do it?Yes, When you enable broker it very common behaviour.
    When ever you bounce the database also MRP process will be started automatically.
    By disabling broker you can avoid automatic startup, BTW Standby should be in recovery mode, i think no need to worry on this.
    If you want to disable as per time, you can disable it as below
    ALTER SYSTEM SET DG_BROKER_START=FALSE ;
    Total Questions:      3 (3 unresolved)
    Close the threads when you feel its answered, Keep the forum clean.
    Edited by: CKPT on Feb 15, 2012 12:57 PM

  • Solution Manager to test business process

    Hi all,
    Has anbody used solution manager for testing business processes in SRM??if so how??We ahev Solution manager configured for SRM but I dont know how to test the SRM business processess through SM???
    Please advise.

    Hi Rejin,
    You have to first create a Test Configuration for your test script. This you can do by going into your test script from TCODE "SECATT" and follow the menu path Utilities/Test Configuration/Create, this will create a Test Configuration with the same name as your script. Now you can goto to the Solution Manager business process and enter you Test Configuration in the Test Case Tab.
    Regards,
    Rajnikanth

  • Stoping recovery process....ORA-01110

    Hi experts;
    I have created physical Standby. I am getting archives when I start the recovery process by issuing
    alter database recover managed standby database using current logfile disconnect;
    But when I stop this process & alter database open
    alter database recover managed standby database cancel
    logs reports no error but I get when "alter database open"
    ERROR at line 1:
    ORA-16004: backup database requires recovery
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/u02/app/oracle/oradata/orcl/system01.dbf'
    this. Actually I had copied all datafiles without issuing "ALter database begin backup"
    So please provide me the solution
    Thanks in Advance

    Fayn_dba wrote:
    Hi experts;
    I have created physical Standby. I am getting archives when I start the recovery process by issuing
    alter database recover managed standby database using current logfile disconnect;
    But when I stop this process & alter database open
    alter database recover managed standby database cancel
    logs reports no error but I get when "alter database open"
    ERROR at line 1:
    ORA-16004: backup database requires recovery
    ORA-01194: file 1 needs more recovery to be consistent
    ORA-01110: data file 1: '/u02/app/oracle/oradata/orcl/system01.dbf'
    this. Actually I had copied all datafiles without issuing "ALter database begin backup"What procedure you used exactly?
    what is the version you are using?
    Why cant use RMAN duplicate?
    When you start MRP(recovery) do you see any progress there as it is applying?
    Read methods to take backups when database is open and do the same.
    http://docs.oracle.com/cd/E11882_01/backup.112/e10642/rcmintro.htm

  • Trying to test the process on the EM but nothing happens

    I am trying to test my process but I don't see anything happening. That process was working fine till the last week and when I tried it today nothing seem to be happening. I see that the instance has been created and the client endpoint of my service has been started but nothing is happening after that.
    I have dropped the db adapter connection factory from the console but that doesn't seem to help.
    My process flow is
    Database call> Webservice Call > Database Call > End of process
    Is there anything that can be done to sort this out?
    Thanks.

    Actually there is no exception that is being raised that I can see on the EM, the only thing that I am able to see is that the process has been started and nothing beyond that
    This is the soa_server_diagnostic log
    [2012-10-22T03:00:03.550-07:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.bpel.engine.agents] [tid: orabpel.engine.pool-5.thread-11] [userId: <anonymous>] [ecid: 0000JdpmBd4CSsh5xBx0iW1GW7JZ000002,1:28697] [APP: soa-infra] Done finding 0 expirable work items for the bpel engine
    [2012-10-22T03:05:03.596-07:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.bpel.engine.agents] [tid: orabpel.engine.pool-5.thread-12] [userId: <anonymous>] [ecid: 0000JdpmBd4CSsh5xBx0iW1GW7JZ000002,1:28698] [APP: soa-infra] Done finding 0 expirable work items for the bpel engine
    [2012-10-22T03:10:03.636-07:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.bpel.engine.agents] [tid: orabpel.engine.pool-5.thread-13] [userId: <anonymous>] [ecid: 0000JdpmBd4CSsh5xBx0iW1GW7JZ000002,1:28699] [APP: soa-infra] Done finding 0 expirable work items for the bpel engine
    [2012-10-22T03:15:03.676-07:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.bpel.engine.agents] [tid: orabpel.engine.pool-5.thread-14] [userId: <anonymous>] [ecid: 0000JdpmBd4CSsh5xBx0iW1GW7JZ000002,1:28700] [APP: soa-infra] Done finding 0 expirable work items for the bpel engine
    [2012-10-22T03:20:03.751-07:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.bpel.engine.agents] [tid: orabpel.engine.pool-5.thread-15] [userId: <anonymous>] [ecid: 0000JdpmBd4CSsh5xBx0iW1GW7JZ000002,1:28701] [APP: soa-infra] Done finding 0 expirable work items for the bpel engine
    [2012-10-22T03:25:03.792-07:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.bpel.engine.agents] [tid: orabpel.engine.pool-5.thread-16] [userId: <anonymous>] [ecid: 0000JdpmBd4CSsh5xBx0iW1GW7JZ000002,1:28702] [APP: soa-infra] Done finding 0 expirable work items for the bpel engine
    [2012-10-22T03:30:03.838-07:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.bpel.engine.agents] [tid: orabpel.engine.pool-5.thread-17] [userId: <anonymous>] [ecid: 0000JdpmBd4CSsh5xBx0iW1GW7JZ000002,1:28703] [APP: soa-infra] Done finding 0 expirable work items for the bpel engine
    [2012-10-22T03:35:03.909-07:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.bpel.engine.agents] [tid: orabpel.engine.pool-5.thread-18] [userId: <anonymous>] [ecid: 0000JdpmBd4CSsh5xBx0iW1GW7JZ000002,1:28704] [APP: soa-infra] Done finding 0 expirable work items for the bpel engine
    [2012-10-22T03:40:03.948-07:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.bpel.engine.agents] [tid: orabpel.engine.pool-5.thread-19] [userId: <anonymous>] [ecid: 0000JdpmBd4CSsh5xBx0iW1GW7JZ000002,1:28705] [APP: soa-infra] Done finding 0 expirable work items for the bpel engine
    [2012-10-22T03:45:03.993-07:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.bpel.engine.agents] [tid: orabpel.engine.pool-5.thread-20] [userId: <anonymous>] [ecid: 0000JdpmBd4CSsh5xBx0iW1GW7JZ000002,1:28706] [APP: soa-infra] Done finding 0 expirable work items for the bpel engine
    [2012-10-22T03:50:04.031-07:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.bpel.engine.agents] [tid: orabpel.engine.pool-5.thread-21] [userId: <anonymous>] [ecid: 0000JdpmBd4CSsh5xBx0iW1GW7JZ000002,1:28707] [APP: soa-infra] Done finding 0 expirable work items for the bpel engine
    [2012-10-22T03:55:04.069-07:00] [soa_server1] [NOTIFICATION] [] [oracle.soa.bpel.engine.agents] [tid: orabpel.engine.pool-5.thread-22] [userId: <anonymous>] [ecid: 0000JdpmBd4CSsh5xBx0iW1GW7JZ000002,1:28708] [APP: soa-infra] Done finding 0 expirable work items for the bpel engine
    This is the soa_server1 log
    ####<Oct 22, 2012 9:35:22 AM PDT> <Info> <Common> <emussoaapp01.leapfrog.com> <soa_server1> <FabricScheduler_QuartzSchedulerThread> <<anonymous>> <> <0000JdpmBd4CSsh5xBx0iW1GW7JZ000002> <1350923722170> <BEA-000628> <Created "1" resources for pool "SOALocalTxDataSource", out of which "1" are available and "0" are unavailable.>
    ####<Oct 22, 2012 9:35:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350923729310> <BEA-310002> <63% of the total memory in the server is free>
    ####<Oct 22, 2012 9:35:32 AM PDT> <Info> <JDBC> <emussoaapp01.leapfrog.com> <soa_server1> <[ACTIVE] ExecuteThread: '10' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-000000000006d956> <1350923732952> <BEA-001128> <Connection for pool "mds-soa" closed.>
    ####<Oct 22, 2012 9:35:47 AM PDT> <Info> <Common> <emussoaapp01.leapfrog.com> <soa_server1> <MDSPollingThread-[soa-infra, jdbc/mds/MDS_LocalTxDataSource]> <<anonymous>> <> <0000JdpmBd4CSsh5xBx0iW1GW7JZ000002> <1350923747428> <BEA-000628> <Created "1" resources for pool "mds-soa", out of which "1" are available and "0" are unavailable.>
    ####<Oct 22, 2012 9:36:06 AM PDT> <Info> <Common> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@6b2faaa7> <<anonymous>> <> <0000JdpmBd4CSsh5xBx0iW1GW7JZ000002> <1350923766113> <BEA-000628> <Created "1" resources for pool "SOADataSource", out of which "1" are available and "0" are unavailable.>
    ####<Oct 22, 2012 9:36:11 AM PDT> <Info> <Common> <emussoaapp01.leapfrog.com> <soa_server1> <[ACTIVE] ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-15AFB48959B8F6E6A885> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-000000000006d985> <1350923771744> <BEA-000628> <Created "1" resources for pool "OraSDPMDataSource", out of which "1" are available and "0" are unavailable.>
    ####<Oct 22, 2012 9:37:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350923849325> <BEA-310002> <41% of the total memory in the server is free>
    ####<Oct 22, 2012 9:38:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350923909333> <BEA-310002> <52% of the total memory in the server is free>
    ####<Oct 22, 2012 9:39:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350923969341> <BEA-310002> <36% of the total memory in the server is free>
    ####<Oct 22, 2012 9:40:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350924029348> <BEA-310002> <48% of the total memory in the server is free>
    ####<Oct 22, 2012 9:42:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350924149363> <BEA-310002> <59% of the total memory in the server is free>
    ####<Oct 22, 2012 9:43:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350924209371> <BEA-310002> <32% of the total memory in the server is free>
    ####<Oct 22, 2012 9:46:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350924389393> <BEA-310002> <63% of the total memory in the server is free>
    ####<Oct 22, 2012 9:48:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350924509409> <BEA-310002> <38% of the total memory in the server is free>
    ####<Oct 22, 2012 9:49:45 AM PDT> <Info> <JDBC> <emussoaapp01.leapfrog.com> <soa_server1> <[ACTIVE] ExecuteThread: '21' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-000000000006ddbb> <1350924585335> <BEA-001128> <Connection for pool "SOADataSource" closed.>
    ####<Oct 22, 2012 9:50:00 AM PDT> <Info> <JDBC> <emussoaapp01.leapfrog.com> <soa_server1> <[ACTIVE] ExecuteThread: '14' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-000000000006ddcf> <1350924600384> <BEA-001128> <Connection for pool "SOALocalTxDataSource" closed.>
    ####<Oct 22, 2012 9:50:18 AM PDT> <Info> <JDBC> <emussoaapp01.leapfrog.com> <soa_server1> <[ACTIVE] ExecuteThread: '25' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-000000000006dde6> <1350924618134> <BEA-001128> <Connection for pool "OraSDPMDataSource" closed.>
    ####<Oct 22, 2012 9:50:19 AM PDT> <Info> <Common> <emussoaapp01.leapfrog.com> <soa_server1> <FabricScheduler_QuartzSchedulerThread> <<anonymous>> <> <0000JdpmBd4CSsh5xBx0iW1GW7JZ000002> <1350924619533> <BEA-000628> <Created "1" resources for pool "SOALocalTxDataSource", out of which "1" are available and "0" are unavailable.>
    ####<Oct 22, 2012 9:50:30 AM PDT> <Info> <Common> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@47ec43b8> <<anonymous>> <BEA1-26EBB48959B8F6E6A885> <0000JdpmBd4CSsh5xBx0iW1GW7JZ000002> <1350924630920> <BEA-000628> <Created "1" resources for pool "SOADataSource", out of which "1" are available and "0" are unavailable.>
    ####<Oct 22, 2012 9:50:32 AM PDT> <Info> <JDBC> <emussoaapp01.leapfrog.com> <soa_server1> <[ACTIVE] ExecuteThread: '16' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-000000000006ddf9> <1350924632955> <BEA-001128> <Connection for pool "mds-soa" closed.>
    ####<Oct 22, 2012 9:50:47 AM PDT> <Info> <Common> <emussoaapp01.leapfrog.com> <soa_server1> <MDSPollingThread-[soa-infra, jdbc/mds/MDS_LocalTxDataSource]> <<anonymous>> <> <0000JdpmBd4CSsh5xBx0iW1GW7JZ000002> <1350924647921> <BEA-000628> <Created "1" resources for pool "mds-soa", out of which "1" are available and "0" are unavailable.>
    ####<Oct 22, 2012 9:51:11 AM PDT> <Info> <Common> <emussoaapp01.leapfrog.com> <soa_server1> <[ACTIVE] ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-27BBB48959B8F6E6A885> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-000000000006de30> <1350924671769> <BEA-000628> <Created "1" resources for pool "OraSDPMDataSource", out of which "1" are available and "0" are unavailable.>
    ####<Oct 22, 2012 9:52:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350924749439> <BEA-310002> <64% of the total memory in the server is free>
    ####<Oct 22, 2012 9:55:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350924929462> <BEA-310002> <52% of the total memory in the server is free>
    ####<Oct 22, 2012 10:00:00 AM PDT> <Info> <Common> <emussoaapp01.leapfrog.com> <soa_server1> <[ACTIVE] ExecuteThread: '2' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <> <0000JdpmBd4CSsh5xBx0iW1GW7JZ000002> <1350925200153> <BEA-000628> <Created "1" resources for pool "SOALocalTxDataSource", out of which "1" are available and "0" are unavailable.>
    ####<Oct 22, 2012 10:00:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350925229500> <BEA-310002> <34% of the total memory in the server is free>
    ####<Oct 22, 2012 10:01:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350925289507> <BEA-310002> <54% of the total memory in the server is free>
    ####<Oct 22, 2012 10:04:45 AM PDT> <Info> <JDBC> <emussoaapp01.leapfrog.com> <soa_server1> <[ACTIVE] ExecuteThread: '8' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-000000000006e264> <1350925485339> <BEA-001128> <Connection for pool "SOADataSource" closed.>
    ####<Oct 22, 2012 10:05:00 AM PDT> <Info> <JDBC> <emussoaapp01.leapfrog.com> <soa_server1> <[ACTIVE] ExecuteThread: '22' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-000000000006e27c> <1350925500409> <BEA-001128> <Connection for pool "SOALocalTxDataSource" closed.>
    ####<Oct 22, 2012 10:05:18 AM PDT> <Info> <JDBC> <emussoaapp01.leapfrog.com> <soa_server1> <[ACTIVE] ExecuteThread: '14' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-000000000006e296> <1350925518139> <BEA-001128> <Connection for pool "OraSDPMDataSource" closed.>
    ####<Oct 22, 2012 10:05:32 AM PDT> <Info> <JDBC> <emussoaapp01.leapfrog.com> <soa_server1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-000000000006e2a9> <1350925532949> <BEA-001128> <Connection for pool "mds-soa" closed.>
    ####<Oct 22, 2012 10:05:44 AM PDT> <Info> <Common> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@32f1857e> <<anonymous>> <BEA1-393DB48959B8> <0000JdpmBd4CSsh5xBx0iW1GW7JZ000002> <1350925544967> <BEA-000628> <Created "1" resources for pool "SOADataSource", out of which "1" are available and "0" are unavailable.>
    ####<Oct 22, 2012 10:05:48 AM PDT> <Info> <Common> <emussoaapp01.leapfrog.com> <soa_server1> <MDSPollingThread-[soa-infra, jdbc/mds/MDS_LocalTxDataSource]> <<anonymous>> <> <0000JdpmBd4CSsh5xBx0iW1GW7JZ000002> <1350925548360> <BEA-000628> <Created "1" resources for pool "mds-soa", out of which "1" are available and "0" are unavailable.>
    ####<Oct 22, 2012 10:06:11 AM PDT> <Info> <Common> <emussoaapp01.leapfrog.com> <soa_server1> <[ACTIVE] ExecuteThread: '3' for queue: 'weblogic.kernel.Default (self-tuning)'> <<anonymous>> <BEA1-39C5B48959B8F6E6A885> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-000000000006e2da> <1350925571775> <BEA-000628> <Created "1" resources for pool "OraSDPMDataSource", out of which "1" are available and "0" are unavailable.>
    ####<Oct 22, 2012 10:08:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350925709561> <BEA-310002> <43% of the total memory in the server is free>
    ####<Oct 22, 2012 10:14:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350926069606> <BEA-310002> <59% of the total memory in the server is free>
    ####<Oct 22, 2012 10:16:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350926189621> <BEA-310002> <39% of the total memory in the server is free>
    ####<Oct 22, 2012 10:17:23 AM PDT> <Info> <Common> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@32f1857e> <<anonymous>> <BEA1-4738B48959B8> <0000JdpmBd4CSsh5xBx0iW1GW7JZ000002> <1350926243054> <BEA-000628> <Created "1" resources for pool "SOADataSource", out of which "1" are available and "0" are unavailable.>
    ####<Oct 22, 2012 10:18:29 AM PDT> <Info> <Health> <emussoaapp01.leapfrog.com> <soa_server1> <weblogic.GCMonitor> <<anonymous>> <> <1319d5d69cad8b22:-15511621:13a75c8995a:-8000-0000000000000fce> <1350926309637> <BEA-310002> <54% of the total memory in the server is free>
    Thanks

  • Recovery process

    I am trying to understand the oracle recovery process.
    Let's say User.dbf file got lost.. I made a back up copy last night.. ( currently DB is in the archived log mode)
    Here is the steps that I am going to follow to recover the DB
    1) shutdown the DB
    2)copy the back up file to the data file location
    3)startup mount
    4)set autorecovery on
    5)recover database;
    6) alter database open;
    are these all steps that I need to follow to bring the DB back online?
    I Am trying to recover DB up to the current point in time.. if I say set autorecovert on, will it recover to the curent pont it time by using redo logs?
    what about the archived log files? when does these files are going to be used during the recovery process? I am trying to recover DB for the yesterday's backup file..
    I am trying to understand the recovery process and make sure no data got lost since the last backup...

    First try to learn about archive-log files. Archive-log files are the offline copies of your redo-log files, archive-log files generates when one redo-log file filled and switch to other redo-log file, during this period, then archiver back ground
    process copies the content of your redo-log file to archive location. When you fire
    recover database, the oracle automatically looks out for the redo-log files and archiive-log files, whic ever required with the help of controlfile, because all the it stores the location of your redo-log and archve-log files.If I still miss some-thing, your can get back to us.
    hare krishna
    Alok

Maybe you are looking for

  • Pkgman - a bash script for local package and PKGBUILD management

    hi all, here is a script which manages a local repository and lets you edit PKGBUILDs and other related files, automatically generates checksums, build packages, add them to your local repo and so on. it also has AUR support for submitting tarballs,

  • Question about Creating Forms in Acrobat 9 Pro

    I designed an invoice form to send to my clients that allows me to easily fill out form data and automatically email to my client. Everything works great, but when I send it, the form is still active and I want the fields to be closed for alteration.

  • How can i set a role that can't see the infoarea?

    HI: i want creat a role ,when use the role open the query , he can only see the report under the favorite and role,can't see the infoarea , how can setting the role's right?

  • Re: Satellite A300 - Error loading operating system

    Hi, I have a laptop satellite a300 and when I boot the system I get an error message 'Error loading operating system' - if some kind poster can help me on this matter it would be much appreciated. Thanks Don

  • Extra protection for EP super administrator

    Hi, We are currently involved in an EP6 SP3 implementation involving web-dynpro development. We have a requirement from the client, where-in he wants extra protection for the super administrator role in EP, meaning, even though the entire portal is i