Oracle Database Backup Service - delete orphaned backups

Hello
I made some backup tests into the cloud. Now the database is deleted, but there are still backups in the cloud. How can I remove these backups? I see them via REST client in my browser:
Is there client available or a REST command to do it?
Regards, Martin

Have you checked out this part of the storage documentation? You can use curl to easily access these commands and the docs have great examples.
https://docs.oracle.com/cloud/latest/storagecs_common/CSSTO/GUID-47A892FA-7C3D-4FF6-BBE0-D4B7362E9F7D.htm#CSSTO-GUID-47A…

Similar Messages

  • Oracle Database Backup in ASCII format

    Hi All,
    I want to know,
    1. Is it possible to have oracle database backup in ASCII format
    Please let me know
    Thanks
    Arjun

    No, it isn't, as a proper backup is a physical copy of a database.
    As Oracle doesn't store data in ASCII, the backup also can't be ASCII.
    Why are you asking this? What is the business requirement?
    Sybrand Bakker
    Senior Oracle DBA

  • Network security with Oracle Database Cloud Service

    Does the Oracle Database Cloud service support SSL? Or, any form of network encryption/authentication between a client and the service across the Internet?

    Thank you Rick. I'm intending to use Oracle Database Cloud Service as a "Database-as-a-Service", however I have read that it is actually more of a "Platform-as-a-Service" offering.
    What I would like to do is to interact with the Oracle Database Cloud Service via a local JDBC client. However, from further reading, it looks like the only way to interact with the Oracle Database Cloud Service from a non-Oracle-cloud-based client is via its RESTful web services (which, as you said, support SSL).
    That is to say, I cannot simply connect to the Oracle Database Cloud Service from a local client just through JDBC alone. It looks like I would have to configure my client to make the relevant RESTful web service calls instead, and likewise configure my settings on the Oracle Database Cloud Service to make the necessary translations (from REST to SQL).
    Just to finally clarify, is my above understanding correct?

  • I want to resell Oracle Database Cloud Service. What are the criteria to do so?

    In order to resell Oracle Database Cloud Service, partners need to meet the following criteria:
    Be a Gold, Platinum, or Diamond member of the Oracle PartnerNetwork in good standing with a valid OPN Agreement.
    Have a valid Full Use Program Distribution Agreement (FUDA) with Oracle, or be in the process of applying for one.
    Have a valid Cloud Services Distribution Addendum (CSDA) or be in the process of applying for one.
    For questions about the criteria, how to apply for OPN, FUDA and CSDA please contact the Oracle Partner Business Center via phone, email or chat. The social media service also is available on Twitter at @OrclPartnerBiz
    Thank you.
    Emilia

    Hi Srini,
    In order to resell our Cloud Services, please see below the current requirements:
    Be an Oracle PartnerNetwork member in good standing (Gold or higher) with a valid OPN Agreement
    Meet the resale competency criteria set forth within each of the Knowledge Zones (listed here)
    Execute a Full Use Program Distribution Agreement (FUDA) and Cloud Services Distribution Addendum (CSDA)
    You can also find more information here.
    Thanks

  • Error in Oracle Database Backup and Recovery User's Guide 12c Release 1 (12.1) E17630-13

    on page 88 of the "Backup and Recovery User's Guide 12c Release 1 (12.1) E17630-13", the example 5-1 SHOW ALL Command is the same of the "Backup and Recovery User's Guide 11g Release 2 (11.2) E10642-06" on page 82 and that output is related to a Oracle Database 11g version (the 10g doesn't print the first line "RMAN configuration parameters for database with db_unique_name PROD1 are:").

    My test cases here:
    Database administrator workshop: Differences in default RMAN configuration settings between 12c and 11g
    {code}[oracle@vsi08devpom ~]$ export ORACLE_SID=CDB001
    [oracle@vsi08devpom admin]$ sqlplus system/oracle@CDB001
    SQL*Plus: Release 12.1.0.1.0 Production on Thu Sep 26 09:10:50 2013
    Copyright (c) 1982, 2013, Oracle.  All rights reserved.
    Last Successful login time: Tue Jul 16 2013 13:43:48 +02:00
    Connected to:
    Oracle Database 12c Enterprise Edition Release 12.1.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Advanced Analytics and Real Application Testing options
    SQL> show con_name
    CON_NAME
    CDB$ROOT
    [oracle@vsi08devpom ~]$ rman target /
    Recovery Manager: Release 12.1.0.1.0 - Production on Thu Sep 26 09:12:42 2013
    Copyright (c) 1982, 2013, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: CDB001 (DBID=4134963396)
    RMAN> show all;
    using target database control file instead of recovery catalog
    RMAN configuration parameters for database with db_unique_name CDB001 are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default
    CONFIGURE RMAN OUTPUT TO KEEP FOR 7 DAYS; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/opt/app/oracle/product/12.1.0/db_1/dbs/snapcf_CDB001.f'; # default{code}
    {code}
    [oracle@localhost orcl]$ rman target /
    Recovery Manager: Release 11.2.0.2.0 - Production on Wed Sep 25 08:12:17 2013
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: ORCL (DBID=1229390655)
    RMAN> show all;
    using target database control file instead of recovery catalog
    RMAN configuration parameters for database with db_unique_name ORCL are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE SBT_TAPE TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE COMPRESSION ALGORITHM 'BASIC' AS OF RELEASE 'DEFAULT' OPTIMIZE FOR LOAD TRUE ; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/home/oracle/app/oracle/product/11.2.0/dbhome_2/dbs/snapcf_orcl.f'; # default
    {code}

  • Oracle Database backup via ESX/VMWare

    We are hoping to migrate our SAP systems to Virtual machines running 64bit Linux/Oracle.
    We currently use Veritas Net Backup on our HPUX boxes for all our SAP backups, but as we  want to go the ESX route it would be nice to perform automated backups (and restores) at the physical server level.
    What backup options are there for backing up SAP on a virtual machine?
    Is there a backint connection between Oracle/SAP and Veritas Consolidated Backup?
    thanks,
    Stephen

    > We can backup the VMDK files after placing the database in backup mode, so a restore would be to recover this file (or files).  But I don't see how this can be automated.
    Does that mean you want to put the Oracle database files into VMDK files and not on the raw device/LUN?
    Markus

  • Oracle database backup

    I want to format my hard disk. but i want to take a copy of my oracle database
    so anyone can please give me the solution for how to take a back up and again how to reload to my new oracle database? if it succeeded is it possible to retain all the schemas of my old database?

    One way to do this is to take a cole backup
    and restore with backup controlfile.
    1. alter database backup controlfile to trace
    2. find this trace and backup it to another drive
    3. shutdown immediate
    4. Backup you database files - if you don't know them (issue when db is open select name from v$session) on another drive5. format you r drive
    6. restore your files from backup
    7. Open trace file and creater a script from it yous copy and paste one of two cases
    8. if it is win nt. make an instance oradi,m -NEW -SID db
    9. sqlplus /nolog
    10. conn / as sysdba
    11. startup nomount
    12. execute script created in point 7
    For more detail instructions please refer to User Managed Backup and Recovery Guide
    Best Regards
    Krystian Zieja / mob

  • Oracle Database Web Service Client using UTL_DBWS :: ORA-29532 Error

    Hi,
    I have the Oracle Database 10.2.0.1.0 :-
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE    10.2.0.1.0      Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - ProductionI have written a simple Web Services Client using the classes gfrom the UTL_DBWS package. I loaded the JAR file dbwsclient.jar in the SYS Schema and I am trying to use it in the USF Schema.
    However, I have hit this error & I ma unable to proceed :-
    SQL>  select get_stock_price from dual;
    select get_stock_price from dual
    ERROR at line 1:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.lang.IllegalAccessException: javax.xml.rpc.ServiceException:
    java.security.AccessControlException: the Permission
    (java.lang.RuntimePermission getClassLoader) has not been granted to USF. The
    PL/SQL to grant this is dbms_java.grant_permission( 'USF',
    'SYS:java.lang.RuntimePermission', 'getClassLoader', '' )
    ORA-06512: at "USF.UTL_DBWS", line 193
    ORA-06512: at "USF.UTL_DBWS", line 190
    ORA-06512: at "USF.GET_STOCK_PRICE", line 17Can you please help me with this ?
    Regards,
    Sandeep

    Hi,
    The error message said
    the Permission(java.lang.RuntimePermission getClassLoader) has not been granted to USF.
    I'd follow the suggestion
    The PL/SQL to grant this is dbms_java.grant_permission( 'USF','SYS:java.lang.RuntimePermission', 'getClassLoader', '' )
    In case you have not done so, consult the Callout Users Guide @
    http://www.oracle.com/technology/sample_code/tech/java/jsp/callout_users_guide.htm
    Kuassi http://db360.blogspot.com

  • Oracle Database Console Service not starting on Windows 2008 R2

    I am installing Oracle 11G
    The database installs fine, however Database Console service will not start. The java process is launched and I get the login screen, however after logging in I see: Error: Internal Error has occurred. Check the log file for details.
    I check emoms.trc and I found the following:
    2011-07-08 11:22:16,037 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.pp.asprov.ui.intg.ASProvisioningIntegration
    2011-07-08 11:22:16,037 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.pp.paf.sample.ui.intg.PAFDemoIntegration
    2011-07-08 11:22:16,037 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.emCLI.CLIIntg
    2011-07-08 11:22:16,037 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.emCLI.CLIDownloadIntg
    2011-07-08 11:22:17,285 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.eml.target.slb.common.SLBIntegration
    2011-07-08 11:22:22,808 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.pp.sidb.ui.intg.SIDBProvisioningIntegration
    2011-07-08 11:22:23,089 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.pp.racprov.ui.intg.RACProvIntegration
    2011-07-08 11:22:23,089 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.pp.ec.ui.intg.ExtendClusterIntegration
    2011-07-08 11:22:23,135 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.pp.dn.ui.intg.DltNodeIntegration
    2011-07-08 11:22:23,135 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.pp.common.ui.intg.ProvCommonIntegration
    2011-07-08 11:22:23,135 [OC4J Launcher] ERROR app.ContextInitializer contextInitialized.420 - Integration Class not found: oracle.sysman.pp.bpelprov.ui.intg.BPELProvisioningIntegration
    2011-07-08 14:41:07,079 [EMUI_14_41_06_/console/database/instance/sitemap] ERROR perf.sitemap initializeGeneral.580 - Failed to initialize object: ORA-20206:
    ORA-06512: at "SYSMAN.EMD_DATABASE", line 1297
    ORA-01403: no data found
    ORA-06512: at line 1
    2011-07-08 14:41:08,779 [MetricCollector:HOMETAB_THREAD600:60] ERROR rt.DbMetricCollectorTarget _getAllData.344 - java.lang.NullPointerException
    java.lang.NullPointerException
         at oracle.sysman.emSDK.emd.comm.EMDClient.getURL(EMDClient.java:1570)
         at oracle.sysman.emSDK.emd.comm.EMDClient.getConnection(EMDClient.java:1266)
         at oracle.sysman.emSDK.emd.comm.EMDClient.getConnection(EMDClient.java:1242)
         at oracle.sysman.emSDK.emd.comm.EMDClient.getResponseForRequest(EMDClient.java:1689)
         at oracle.sysman.emSDK.emd.comm.EMDClient.getMetrics(EMDClient.java:981)
         at oracle.sysman.emo.perf.metric.rt.DbHomeTab._getAllData(DbHomeTab.java:340)
         at oracle.sysman.emo.perf.metric.rt.DbHomeTab.getData(DbHomeTab.java:154)
         at oracle.sysman.emo.perf.metric.eng.MetricCached.collectCachedData(MetricCached.java:416)
         at oracle.sysman.emo.perf.metric.eng.MetricCollectorThread._collectCachedData(MetricCollectorThread.java:605)
         at oracle.sysman.emo.perf.metric.eng.MetricCollectorThread.run(MetricCollectorThread.java:325)
         at java.lang.Thread.run(Thread.java:595)
    I went here SYSMAN.EMD_DATABASE", line 1297 and found the below query:
    SELECT target_guid, type_display_name, last_load_time,
    TYPE_META_VER, CATEGORY_PROP_1, CATEGORY_PROP_2, CATEGORY_PROP_3,
    CATEGORY_PROP_4, CATEGORY_PROP_5,
    NVL(to_char(from_tz(CAST(last_load_time AS TIMESTAMP),
    timezone_region),
    'TZD'),
    'GMT ' || to_char(from_tz(CAST(last_load_time AS TIMESTAMP),
    timezone_region),
    'TZR'))
    INTO targetGuid, typeDisplayName, lastUpdatedTime,
    meta_ver, cat_prop_1, cat_prop_2, cat_prop_3,
    cat_prop_4, cat_prop_5,
    timeZone
    FROM mgmt_targets
    WHERE target_name = targetName
    AND target_type = targetType;
    I do not know what is being passed for variables, however there is only one row in that table (Target_name=Management Services and Repository) and in another database instance I have 5.
    I have tried uninstalling the entire database several times and I have also used emca -deconfig dbcontrol db -repos drop and emca -config dbcontrol db -repos create several times after updating my host file (even though I have a static IP). Any assistance would be greatly appreciated.
    Thanks,
    Ben

    Hi Eric,
    Thanks for the reply. I do have enough disk space. This is a new server with over a TB of free space on the drive where I am installing.
    Thanks,
    Ben

  • GetConnection from Oracle Database Cloud Service

    I created a table at the internal JCS instance, and tried to create a web service to insert the data into the table. It's a simple insert operation, so I prefer to coding it without JPA or ADF business component.
    So far, the web service works, but it can't connect to database service.
    Here is my code snippet of the web service method which deployed on JCS, and the jndi name is database,
            try {
                Context ctx = new InitialContext();
                DataSource ds = (DataSource)ctx.lookup("database");
                conn = ds.getConnection();
                String sql = "insert into bvrequest(user_id,activity) values(?,?)";
                pstmt = conn.prepareStatement(sql);
                pstmt.setString(1, userid);
                pstmt.setString(2, activity);
                pstmt.executeUpdate();
                return "OK";
    The thrown exception is,
    weblogic.jdbc.extensions.PoolLimitSQLException: weblogic.common.resourcepool.ResourceLimitException: No resources currently available in pool database to allocate to applications, please increase the size of the pool and retry..
    Is it a correct way to use Database Cloud Service? Any suggestion/comment is welcome.
    -Paula

    Hi Paula -
    I think you need to ask this question in the Java Cloud Service forum.  If you are trying to make a connection to a Database Cloud Service from Java outside the Oracle Public Cloud, you cannot do it with JDBC.  You can only use RESTful Web Services from outside the Oracle Public Cloud to access the Oracle Database Cloud.
    Hope this helps.
    - Rick Greenwald

  • Is there a way to terminate Oracle Database Cloud Service - S5 service?

    Hi All,
    I'm having a very terrible situation here. I have been trying to terminate my database cloud service but nobody in Oracle sale team or support team are able to do it. I spoke to a guy from sales team and he forwarded my call to a guy in support team which he said he'll do it and gave me a reference number. A few weeks later I got an email from a billing department asking me to pay the amount that was due. I explained to him the situation and got no words back from him. Guess what! today I checked my bank account and found that Oracle has taken the payment from me!
    I'm furiously angry with Oracle! It seems that there is no escape from the cloud service!  the customer service is terrible and there seems no co-ordinations between different departments.
    I really appreciate for your help as I dont who I should and can speak to.
    Cheers,
    Syaifuddin

    Not good to hear.... I hope it has been resolved by now.
    However, in case of such an event, which will not happen to often, you can always request your bank to block this until the situation has been resolved. In esscece this should not happen however I can imagine that in a very unlikely scenario this could happen.
    Hope Iloon Wolff-Oracle has been able to resolve this for you.
    Regards,
    Johan Louwers.

  • Oracle database backup and recovery in 9i

    Dear Oracle team, Iam facing problems in taking backups,
    import, export are not working at command prompt and also while I tried to take help of that command usage, it is showing no exp, imp was not found and also I tried with oracle enterprise manager console by servermode, using the backup wizard, but the dump created by oem, I am unable to locate, please give vivid picture of that and give demonstration on that.
    with Regards,
    narasimham.

    can u be more specific abt the procedure that u r following. Simply write EXP in RUN and the EXP prompt will appear.
    for furthur assistance feel free to ask.
    best regards

  • Facing Problem  In Using Oracle Database Cloud Backup Service

    Hi Everyone,
    I m trying to use Oracle Database Backup Service, for this i have done the following as mentioned in the documentation.
    http://www.oracle.com/technetwork/database/features/availability/twp-oracledatabasebackupservice-2183633.pdf
    1.Downloaded the opc_installer from otn and unzipped.
    2. Executed the following statement from command prompt
    java -jar opc_install.jar -serviceName myService -identityDomain myDomain
    -opcId [email protected] -opcPass myPassword -configFile "C:\Oracle\OPC\conf"
    -walletDir  "C:\Oracle\OPC\wallet"  -libDir "C:\Oracle\OPC\lib"
    Using my credentials, servicename , identitydomain in the above statement.
    Download Complete message appears.
    3. Connects to RMAN and configure channel for sbt by passing this.
    configure channel device type sbt parms
    'SBT_LIBRARY=C:\Oracle\OPC\lib\oraopc12.dll
    ENV=(OPC_PFILE=C:\Oracle\OPC\conf\conf.txt)';
    4.To test the installation i executed the given statement "backup device type sbt current controlfile;"
    Starting backup at 31-MAY-14
    RMAN-00571:
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS
    RMAN-00571:
    RMAN-03002: failure of backup command at 05/31/2014 04:41:44
    ORA-19554: error allocating device, device type: SBT_TAPE, device name:
    ORA-27000: skgfqsbi: failed to initialize storage subsystem (SBT) layer
    OSD-01400: Message 1400 not found;  product=RDBMS; facility=SOSD
    (OS 7110)
    ORA-19511: Error received from media manager layer, error text:
       SBT error = 7110, errno = 1400, sbtinit: internal error - invalid argument(s)
    Getting the following error.
    My database version is 11g 11.2.0.3 and is installed in windows server 2008.
    Please help to resolve the error.
    Looking for your help.
    Regards

    Hi,
    Could you try the following command ? Seems like some dependent Windows DLL is not being loaded..
    sbttest foo -libname <abs-path-of-directory>\oraopc12.dll
    This will output the reason why oraopc12.dll can't be loaded.
    Thanks

  • How to configure backup parallel in SAP with oracle database?

    Dear SAP,
    We need your suggestion on oracle database backup parallel using brbackup, our SAP system run on:
    OS: UNIX - SUN Solaris SPARC 10
    SAP: ECC 6.0 SR3
    Database: Oracle 10.2.0.4
    Our production database are growing rapidly, estimate growing is 2GB/days. Right now we backup our Production using one tape that estimated time to online backup is 4-5hours.
    In there future, if we stayed this configuration. It will take long time to backup and restore it's not applicable. That's why we are planning to add more tapes during backup (4 tape parallel).
    I read from help.sap, that we can configure this on $ORACLE_HOME/dbs/init<SID>.sap. in parameter:
    compress = harware
    backup_dev_type = tape
    tape_address = (tape1, tape2, tape3, tape4)
    tape_address_rew = (tape1, tape2, tape3, tape4)
    http://help.sap.com/saphelp_nw04/helpdata/en/88/a2a041a5d4af4db168992639d65d3b/frameset.htm
    My question,
    If we want to backup parallel using 4 tapes, is this configuration that we need to do (init<SID>.sap) from sap side (DB13)?
    Thanks and Best Regards,
    Widi

    Dear Mark,
    Thanks for your help. actually I have one more question:
    How do I restore my backup form this 4 tapes, if I'm using parallel backup?
    Will the command same like I restore form 1 tape:
    example:
    brrestore u2013b beczqlnk.ant u2013m full
    brrestore u2013a 5371-5372=/oracle/<SID>/oraarch/
    Below are the paramter that I will configure:
    - tape_address = /dev/rmt/0cbn
    - compress = hardware
    - backup_dev_type = tape
    - exec_parallel = 4
    - tape_size = 1600000
    - tape_address = (dev/rmt/0mn, /dev/rmt/1mn, ..)
    - tape_address_rew = (dev/rmt/0m, /dev/rmt/1m, ..)
    Appreciate you help and suggestion on this.
    Dear Venkat,
    thanks for your suggestion

  • SAP Production Systems Database backup failed

    Dear Guru,
    I have been facing a problem with our SAP Production system's oracle database backup for last three days. Our back up goes through TSM server. At night 10 pm we have schedule backup for whole offline + redo log backup,  11 pm check and update optimizer statistic and at 11:30 pm Check Database. For last three days above mentioned backup getting failed and we are not able to get such a details log by which i can understand the issue. But Our Development server and Quality server's backup which are scheduled at 12 am and 2 am, the both backup schedules finish successfully. And in morning all schedule backups of Production systems finish without any errors. The issues is coming only with Whole database backup + redo log Backup which schedule at night 10 pm. I have mentioned the log whatever i have got in below:
    07.02.2012     07:30:06     Job started
    07.02.2012     07:30:06     Job has exceeded its latest start date
    07.02.2012     07:30:06     Job cancelled after system exception ERROR_MESSAGE
    Above mentioned logs are showing 1day advance log where i have mentioned yesterdays log. That means it should shows 06.02.2012 instead of 07.02.2012 and time should be 22:00:00 instead of 07:20:06.
    Our Oracle version is 10.2.0.4.0/ kernel release 701/BRBACKUP 7.00 (40)
    Please Guide me.
    Regards,
    Samrat Chakraborty

    OK,
    this has nothing to do with brbackup or TSM.
    You batchjob starts at 07:30 !!!
    Means before that, you do not have any action at all.
    Then the job crosschecks it has passed its intended startdate and terminates,
    which is correct, since you do not like brbackup to shut down your DB at 07:30!
    No brbackup is started at all, which is why you get no log and no tsm connect takes place.
    I assume,  you misconfigured some operationmodes and at 07:30 an OP-modeconfiguration
    with batchjobs switches back in place so that the jobs do start too late.
    Check RZ04 and the OP mode timetable
    If it is not this, it has to be something else with the batch scheduler causing delay
    or may be all BTC processes are busy, but this seems unlikely with a start at 07:30 sharp..
    Volker

Maybe you are looking for