Maintanance backup plan fail

Hi all
I have a maintenance plan to backup ALL databases on everyday 11:00am. however it failed start from wednesday.
I see the log is so strange:
Executing the query "
declare @backupSetId as int
select @backupSetId = position from msdb..backupset
where
database_name=N'DB_A' and
backup_set_id=(select max(backup_set_id) from msdb..backupset where database_name=N'DB_A' )
if @backupSetId is null begin raiserror(N'Verify failed. Backup information for database ''DB_A'' not found.', 16, 1) end
RESTORE VERIFYONLY FROM 
DISK = N'H:\\DB_Backup\\DB_A\\DB_A_backup_201303132300.bak'
WITH 
FILE = @backupSetId, 
NOUNLOAD, 
NOREWIND
" failed with the following error: "Cannot open backup device 'H:\\DB_Backup\\DB_A\\DB_A_backup_201303132300.bak'.
Operating system error 32(The process cannot access the file because it is being used by another process.).
VERIFY DATABASE is terminating abnormally.".
Possible failure reasons: Problems with the query,
"ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.
 ===================================================================================
Executing the query "
BACKUP DATABASE [DB_B] TO  DISK = N'H:\\DB_Backup\\DB_B\\DB_B_backup_201303132300.bak' WITH 
RETAINDAYS = 31,
NOFORMAT,
NOINIT, 
NAME = N'DB_B_backup_20130313230031',
SKIP,
REWIND,
NOUNLOAD, 
STATS = 10
failed with the following error:
"Cannot open backup device 'H:\\DB_Backup\\DB_B\\DB_B_backup_201303132300.bak'.
Operating system error 32(The process cannot access the file because it is being used by another process.).
BACKUP DATABASE is terminating abnormally.".
Possible failure reasons: Problems with the query,
"ResultSet" property not set correctly,
parameters not set correctly, or
connection not established correctly
Finally, the backup file is created on the disk, and the log above is display on 11:00:31pm....why verify is process before backup finish?
the backup file date is about 11:14pm...
really has no clue.
wednesday night and thursday night got the same problem, and the same database.

I have check it's already exclude .BAK
that's really strange!!!!! Database DB_A has already been backup at 23:05:14...  Why it try to backup again on 23:09:42.....??
any how can I trace spid 54 to know what and who is doing ?
2013-03-14 23:05:14.94 Backup      Database backed up. Database: DB_A, creation date(time): 2011/02/02(14:14:54), pages dumped: 323851, first LSN: 156927:43:38, last LSN: 156927:59:1, number of dump devices: 1, device information:
(FILE=1, TYPE=DISK: {'H:\DB_Backup\DB_A\DB_A_backup_201303142300.bak'}). This is an informational message only. No user action is required.
2013-03-14 23:09:42.01 spid54      Error: 18204, Severity: 16, State: 1.
2013-03-14 23:09:42.01 spid54      BackupDiskFile::CreateMedia: Backup device 'H:\DB_Backup\DB_A\DB_A_backup_201303142300.bak' failed to create. Operating system error 32(The process cannot access the file because it is being used by
another process.).
2013-03-14 23:09:42.18 Backup      Error: 3041, Severity: 16, State: 1.
2013-03-14 23:09:42.18 Backup      BACKUP failed to complete the command BACKUP DATABASE DB_A. Check the backup application log for detailed messages.

Similar Messages

  • Changing the datasource of LO cockpit inR/3..need a backup plan

    Hi gurus,
    i am going to change the datasource in production system i have done everything in Dev and QAs but my client is asking for a backup plan if something goes wrong.
    like if the transport fails he want everthing to normal without effecting the setup of deltas and data in BW
    can somebody suggest me what i can do as a backup plan if something goes wrong.
    thanks and regards
    neelu

    Hi Neel
    If something goes wrong and it mess up your deltas in Production system then what is the backup plan?
    This is what I think -
    If your data source is LO cockpit extractor then ensure following -
    Before your R/3 transports ,stop V3 batch job .
    Lock the users (transaction lock) ,
    Stop batch jobs that will update base tables of extracor
    Drain the delta queue into BW till you get 0 LUWs in RSA7 for that datasource in R/3 system.
    Activate the last request in ODS and also send the data into Infocube . Now you have all data till that time into BW.
    Import your transports. Then execute V3 job in R/3 and run Info package from BW .
    If something is messed up then immdiately push another transport that will repair it .Then  do Init without data transfer and resume deltas.
    For other extractors just ensure to Drain the delta queue into BW till you get 0 LUWs in RSA7 for that datasource in R/3 system.(I assume that you will take care of batch jobs /transactional update - they should be stopped for any extractor)
    Hope this plan helps you .
    Please let me know if you still have questions.
    Best of luck
    Pradip

  • How to find the existing sql server backup plan/schedule is there a script for that?

    Friends,
    Is there a easy way to find out in SQLServer (for All DB's) what is the current backup plan/schedule ? is there a script for that?
    Thanks,
    Karthikeyan Jothi

    To check the database backup 
    Select
    SERVERPROPERTY('ServerName'),
    db.name,
    CONVERT(VARCHAR(10), b.backup_start_date, 103) + + convert(VARCHAR(8), b.backup_start_date, 14) backup_start_date,
    CONVERT(VARCHAR(10), b.backup_finish_date, 103) + + convert(VARCHAR(8), b.backup_finish_date, 14) backup_finish_date,
    case
    when (DATEDIFF(hour, b.backup_start_date, getdate())<24)then 'Success'
    when (DATEDIFF(hour, b.backup_start_date, getdate())>=24)then 'Failed'
    end Status,
    DATEDIFF(hh, b.backup_finish_date, GETDATE())BackupAgeInHours,
    (b.backup_size/1024/1024/1024 )BackupSize,
    case b.[type]
    WHEN 'D' THEN 'Full'
    WHEN 'I' THEN 'Differential'
    WHEN 'L' THEN 'Transaction Log'
    END Type,
    ISNULL(STR(ABS(DATEDIFF(day, GetDate(),(Backup_finish_date)))), 'NEVER')DaysSinceLastBackup
    FROM sys.sysdatabases db
    Left OUTER JOIN (SELECT * , ROW_NUMBER() OVER(PARTITION BY database_name ORDER BY backup_finish_date DESC) AS RNUM
    FROM msdb.dbo.backupset) b ON b.database_name = db.name AND RNUM = 1
    where dbid<>2
    OR
    SELECT
    DISTINCT
    a.Name AS DatabaseName ,
    CONVERT(SYSNAME, DATABASEPROPERTYEX(a.name, 'Recovery')) RecoveryModel ,
    COALESCE(( SELECT CONVERT(VARCHAR(12), MAX(backup_finish_date), 101)
    FROM msdb.dbo.backupset
    WHERE database_name = a.name
    AND type = 'd'
    AND is_copy_only = '0'
    ), 'No Full') AS 'Full' ,
    COALESCE(( SELECT CONVERT(VARCHAR(12), MAX(backup_finish_date), 101)
    FROM msdb.dbo.backupset
    WHERE database_name = a.name
    AND type = 'i'
    AND is_copy_only = '0'
    ), 'No Diff') AS 'Diff' ,
    COALESCE(( SELECT CONVERT(VARCHAR(20), MAX(backup_finish_date), 120)
    FROM msdb.dbo.backupset
    WHERE database_name = a.name
    AND type = 'l'
    ), 'No Log') AS 'LastLog' ,
    COALESCE(( SELECT CONVERT(VARCHAR(20), backup_finish_date, 120)
    FROM ( SELECT ROW_NUMBER() OVER ( ORDER BY backup_finish_date DESC ) AS 'rownum' ,
    backup_finish_date
    FROM msdb.dbo.backupset
    WHERE database_name = a.name
    AND type = 'l'
    ) withrownum
    WHERE rownum = 2
    ), 'No Log') AS 'LastLog2'
    FROM sys.databases a
    LEFT OUTER JOIN msdb.dbo.backupset b ON b.database_name = a.name
    WHERE a.name <> 'tempdb'
    AND a.state_desc = 'online'
    GROUP BY a.Name ,
    a.compatibility_level
    ORDER BY a.name
    To check the schedule you can try the below script
    https://gallery.technet.microsoft.com/SQL-Jobs-Complete-eabe0050
    --Prashanth

  • Carbon Clone and Time Machine: developing a backup plan

    Howdy all!
    This is a second post that sort of flows on from another I have written today
    https://discussions.apple.com/thread/4649740
    I initally put them all together, but they were too rambling and disconnected, so it seemed better to seperate them. The question I have here is how best to organise my backup plan? I have a few ideas, but, basically, want to make sure I get the whole setup right the first time and would appreciate any advice from others that have been down the path before. As I am still waiting for some parts to arrive in the mail, I have a little time to think about how to go about setting up my Mac.
    Basically the setup is:
    Mac Mini 2012, boot drive is a Samsung 256GB 830 series SSD, seconday drive for data is a 1TB mechanical disk. I plan on having all my data on the seconday mechanical disk (photos, movies, music etc) and only the OS and Applications on the SSD. To this end, I understand I only have to move /Users to the mechanical disk to achieve this. I then also have 2x 2TB Western Digital MyBook Essential USB 3 disks for Time Machine backups. I plan on rotating them on a weekly basis (storing the disk not in use in a safe or offsite), and then, depending on costs a cloud backup service for some data (music, photos etc) which I might want to access when im not at home.
    So I have been thinking for a few days now on the benefit of having a Carbon Clone bootable recovery drive. The thinking goes along these lines. As my data is on a seperate drive, and is backed up to Time Machine, in the event of an OS disk failure, I can replace the disk and then point /Users to the new drive, and I can be up and running once I have reinstalled the apps i need. Now, I understand the idea of the Carbon Clone backup is such that it speeds up the time to rebuild the OS disk, but I have to question, how useful is this in reality?
    Consider, I can sit down now and write down all the apps I have needed in the past, install Mac OS, set it up (possibly with a generic admin password), install the apps I need from the App store and DVDs etc and then take a Carbon Clone at this point before any setup of Apps are done. If the apps configuration is backed up in the Time Machine backup (i.e.: the config files exist under /Users) then this is almost workable - in a recovery situation, the CC clone is used to rebuild the OS drive, the config files are pulled from the TM backups, and we're back up and running. Where this fails, is if I have installed (or removed) apps since the CC clone was made. At this point then, is it best to (a) make a new clone when a new app is added/removed or (b) make a note of apps added/removed, which will then have to be reinstalled if a recovery is required. I tend to think the (b) method is best here, as it preserves the integrity of the clone. If the machine has been compromised (malware etc) then remaking the clone, causes the clone to be compromised and hence the reinstalled machine as well. Though this method could be a pain if the machine state has changed somewhat over time. Also, it means that the reinstalled system will be missing updates etc which could be time consuming to apply anyway, so the usefulness of a clone is slightly reduced anyway.
    Does anyone have any thoughts on this? Some days I think having a clone will be useful esp. as most of my software was delivered on CD (Adobe Creative Suite, Office) or are large install bases (XCode), but other days I think, "its not a mission critical machine", i can survive a day without it while I rebuild the install, and so I dont achieve much by having a clone which is likely out-of-date by the time I go to use it.
    Also, in this backup plan, is it best to rely on TM for things like email backup or a dedicated mail backup utility? can a Carbon Clone exist on the same disk as Time Machine uses, or do I need to invest in a new disk or two for the CC clones?
    As I say, I want to make sure I have this machine setup right from the start, and would really appreciate any pointers, tips or advice.

    There is one big advantage of a clone.  You can immediately reboot
    to it and continue working and deal with the regular boot drive faiure,
    what ever it may be, later.  Especially since all your data and such
    is on another drive.  If you use your computer for work and time
    critical projects, this is a major plus!
    In the case of a hard drive failure/replacement, copying the clone
    to the drive is the fastest way to get the system and all your settings
    back.
    Time Machine and incremental backups have a place as well.  It is best
    suited for "incremental" problems.  Examples are installing an upgrade to
    software that doesn't work or just don't plain like.  With Time Machine it
    is easy to just restore back to the point before the install.
    Something else I do is backup current project files to USB memory sticks.
    If you are using your computer for business, you can never have too many
    backups.  Coralllary 456 of Murphy's Law is the "number of backups that
    you need will be one more than what you have!"

  • Backup Job Fails

    Dear All,
    I received an error in maintenace plan regarding the backup Job Fails.
    Executed as user: IPROINDIA\sqlservice. Microsoft (R) SQL Server Execute Package Utility  Version 11.0.2100.60 for 64-bit  Copyright (C) Microsoft Corporation. All rights reserved.    Started:  1:30:27 AM  Could not load
    package "Maintenance Plans\Daily_BACKUP" because of error 0xC0014062.  Description: The LoadFromSQLServer method has encountered OLE DB error code 0x80004005 (Login timeout expired).  The SQL statement that was issued has failed. 
    Source:   Started:  1:30:27 AM  Finished: 1:30:43 AM  Elapsed:  15.297 seconds.  The package could not be loaded.  The step failed.
    Anyone please Help What is the issue

    Can you log in as PROINDIA\sqlservice to SQL Server and issue BACKUP DATABASE dbname ........? Still
    have a error?
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • Best Practices: What is a best backup plan on BO 4.0

    Hi Experts!
    I work with BO since 2007. I worked a lot with BO XI 3.1 and now with BI 4.0. I always have a question about the way to make a backup: What is a best backup plan on BO 4.0.
    I know de many way to do this, but how I'm a consultant developer and backup usually is not my responsibility, but always I have to advise my clients and users.
    The little summary of ways I know on BI 4.0:
    - Stop the services and do a backup of repository database and FileStore folder (eventually include the TomCat folder and others BO installation folders)
    - Create a job on LCM and a schedule to export a LCMBIAR file
    - Use the Upgrade Management Tool to generate a BIAR file by the command line
    I found that interesting post of Raphael Branger, but his the best option is to use the 360View, but that software I don't know, and the clients usually want to use the SAP solutions, so the preference is use the BO's way to make backup.
    Backup & Recovery in BO 4.0
    Note: I agree with Raphael about the old Import Wizard, I don't know why Upgrade Management Tool don't allow to import a biar file that same version of target. It is terrible.
    Let me make a the big question: What is a best backup plan on BO 4.0?
    I know that this depends of the environment and the many variables, but let us consider the general environment, the standard installation.
    Thanks everybody!

    Thanks Mrinal and Ajay,
    On my experience I always use the full-backup: repository database backup + filestore folder backup (usually I recommend include BO folder installation and TomCat folder too because the custom configurations). That backup is essential, is basic.
    But this backup is not flexible.The usual problems on BO's production enviroment is accidental deletion of some reports or objects of BO. Since BO XI R2 I used the "Import Wizard" to generate BIAR files by the command line, I usually create a BAT file with command line to create thats files, however BO 4 Import Wizard was died, now exists "Upgrade Management Tool", but I can create BIAR files by the command line too. Let's suppose a case that the BO user has deleted a report and that user did notified that deletion after 1 month. We don't need to restore all objects of the full-backup of 1 month ago, with BIAR files, we can restore only that report. Thats is the advantage of using BIAR files.
    So, my strategy is use the full-backup (repository database + BO installation folder) and create BIAR files.
    What do you think about the backup by generating BIAR files?

  • Can't get iCloud to back up on IPhone 5. Have 7.1 GB available. Backup keeps failing while I am plugged in and connected to wifi

    Can't get iCloud to back up on IPhone 5. Have 7.1 GB available. Backup keeps failing while I am plugged in and connected to wifi. It will show backing up now and estimated time 20 plus hours and always ends up failing after a couple hours

    You need at least 50 MB of free space in order to back up to iCloud.  Rather than backing up, have you tried importing the photos to your computer and deleting them from the camera roll as explained here: http://support.apple.com/kb/HT4083?

  • HT201210 error message: itunes could not back up the iphone "..." because the backup session failed.  I don't know what to do to fix this problem?

    I keep receiving the error message: itunes could not back up the iphone "....." because the backup session failed.  Can anyone advise me on what I can try doing to fix this problem?

    This Apple article talks about backup issues -> iOS: Troubleshooting backup issues in iTunes
    Are you able to backup if you move the previous backup from the location below to the desktop?
    Windows XP: \Documents and Settings\(username)\Application Data\Apple Computer\MobileSync\Backup\
    Windows Vista and Windows 7: \Users\(username)\AppData\Roaming\Apple Computer\MobileSync\Backup\

  • DPM 2012 R2 Backup job FAILED for some Hyper-v VMs and Some Hyper-v VMs are not appearing in the DPM

    DPM 2012 R2  Backup job FAILED for some Hyper-v VMs
    DPM encountered a retryable VSS error. (ID 30112 Details: VssError:The writer experienced a transient error.  If the backup process is retried,
    the error may not reoccur.
     (0x800423F3))
    All the vss Writers are in stable state
    Also Some Hyper-v VMs are not appearing in the DPM 2012 R2 Console When I try to create the Protection Group please note that they are not part of cluster.
    Host is 2012 R2 and The VM is also 2012 R2.

    Hi,
    What update rollup are you running on the DPM 2012 R2 server ?  DPM 2012 R2 UR5 introduced a new refresh feature that will re-enumerate data sources on an individual protected server.
    Check for VSS errors inside the guests that are having problems being backed up.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Hello. I keep my IPhoto library (about 90GB) on an external HD and am trying to back it up to another external drive. Both are formatted Mac OS Extended (Case-sensitive, Journaled). Recently, backup has failed from the start due to error 36. Howtoresolve?

    Hello. I keep my iPhoto library (about 90GB) on an external HD and am trying to back it up to another external drive. Both are formatted Mac OS Extended (Case-sensitive, Journaled) and both check out when scanned with Disk Utility. Recently, backup has failed from the start due to error 36. Any ideas how to  resolve? Also, what's the maximum recommended size for an iPhoto library file? Thx!

    Since you can't drag the library to the other EHD for the backup see if you can duplicate it (if you have enough room on the drive) by selecting it and typing Command+d (duplicate). 
    If you do rebuild the library without a backup and it goes awry you won't lose your photos but you may lose your orgnaizational efforts. So try the following:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Select the options identified in the screenshot. 
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download iPhoto Library Manager and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu option
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library in the location of your choosing  based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    NOTE:  Fix 2 above might be the method you might want to try first with iPLM creating the new library on your second EHD. If it works that would get your backup copy on the second EHD at the same time as repairing it. If it does'nt work then go back to Fix 1.
    OT

  • I get errors trying to set my IPAD back to the factory setting.  error:  backup session failed.  If I try to sync I get 3 more errors - 1) the IPAD cannot be synced, an internal error occurred. 2) required file not found. 3) folder specified instead of fi

    Any help with errors setting IPAD back to factory setting?  I received this error when trying to back up - backup session failed.  Has any one had the following errors when trying to sync to computer?
    1) the IPAD cannot be synced, an internal error occurred. 2) required file not found. 3) a folder specified instead of file.
    Any help appreciated

    Type "13019" into the search bar at the top of this page by "Support" and read the resulting help articles.

  • LMS 3.1 Backup job Failing

    Hello,
    We have LMS 3.1 installed and the backup is failing with the following message
    [Tue Feb  8 09:20:26 2011]  ERROR(247): E:/Backup_3/backup.LOCK file exists
    Most probably another backup process is running
    [Tue Feb  8 09:20:26 2011]  Backup failed: 2011/02/08 09:20:26
    I tried to do the following, but it didn't work:
    1- Run again the backup job, but specify a new backup directory folder (ex: E:/Backup_4/). --> Did not work
    2- - Stop the Deamon Manager service using: net stop crmdmgtd --> Did not work
         - Delete the backup.LOCK file from the E:/Backup_3/ folder
         - Restart the Deamon manager service using: net start crmdmgtd
         - Run the backup job again using the new Folder destination.
    Please Advise,
    Regards,

    I am currently working on a same issue with LMS 3.1 on windows;
    After stopping dmgtd have you been able to delete the backup.lock or have you restarted the server?
    In my case I was not able to delete the file and it turned out dbvalid.exe blocked this. The backup seems to run without any problems. When the backup is done dbvalid.exe trys to verify the backup database files. This validation fails and dbvalid starts dbsupport.exe to get some detail information on the failure and trys to send them to Sybase support. You should find (several ?) crash files here: %ALLUSERSPROFILE%\Application Data\SQL Anywhere 12\diagnostics. dbsupport.exe seems to be started interactively and thus hangs up waiting for some user input...
    In the crash file I see dfmInv mentioned as the database which did not pass dbvalid. I assume I will end up reinitializing the dfm databases to recover - but let's wait and see. I found some hints that there could be a bug with dbvalid.exe form Sybase- not sure if this is the culprit or a real DB error. What I found really strange is the cli of dbsupport.exe (see the option -gui at the end... )
    D:\PROGRA~1\CSCOpx\objects\db\win32\dbsupport.exe" -crash "C:\Documents and Settings\All Users\Application Data\SQL Anywhere 10\diagnostics\SA10_20110215_040218_4348.crash_log" -crashpn "dbeng10" -crashsn "dbvdfmInvEng" -gui
    Also, I would quickly backout the last know good backup from the backup directory - just in case... (the one before the failure raised the first time)

  • Data Protector backup integration fails after upgrade to Oracle 11.2.0.2

    After upgrading a system from Oracle 10.2.0.2 to 11.2.0.2, the Data Protector backup integration fails with error
    [Normal] From: BSM@<dp_cell_server>.<domain> "<sap_host>_<SID>_Online"  Time: 28.04.2011 09:10:21
         Backup session 2011/04/28-74 started.
    [Normal] From: BSM@<dp_cell_server>.<domain> "<sap_host>_<SID>_Online"  Time: 28.04.2011 09:10:21
         OB2BAR application on "<sap_host>.<domain>" successfully started.
    /usr/sap/<SID>/SYS/exe/run/brbackup: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
    [Major] From: OB2BAR_OMNISAP@pervs<SID>.<domain> "OMNISAP"  Time: 04/28/11 09:10:21
         BRBACKUP /usr/sap/<SID>/SYS/exe/run/brbackup -t online -d util_file_online -c -m all -u system/******** returned 127
    /usr/sap/<SID>/SYS/exe/run/brarchive: error while loading shared libraries: libclntsh.so.10.1: cannot open shared object file: No such file or directory
    [Major] From: OB2BAR_OMNISAP@pervs<SID>.<domain> "OMNISAP"  Time: 04/28/11 09:10:21
         BRARCHIVE /usr/sap/<SID>/SYS/exe/run/brarchive -d util_file -s -c -u system/******** returned 127
    [Normal] From: BSM@<dp_cell_server>.<domain> "<sap_host>_<SID>_Online"  Time: 28.04.2011 09:10:22
         OB2BAR application on "<sap_host>.<domain>" disconnected.
    [Critical] From: BSM@<dp_cell_server>.<domain> "<sap_host>_<SID>_Online"  Time: 28.04.2011 09:10:22
         None of the Disk Agents completed successfully.
         Session has failed.
    We checked the configuration, tried linking /oracle/client/11x_64 to 10x_64, removing the link and renewing the 10x_64 oracle client, but still Data Protector can't find the library libclntsh.so.10.1. A new system which was installed with Oracle 11.2.0.2 doesn't have any problems with online backups.
    Any help is appreciated!

    Hi,
    did you create the other link according to the upgrade guide (point 5.5) ?
    You need to create this link so that BR*Tools
    (which is linked to the Oracle 10.2 client)
    can use the newer Oracle 11.2 clients.
    After the software installation has finished,
    create a symbolic link in $ORACLE_HOME/lib as follows:
    cd $ORACLE_HOME/lib
    ln u2013s libnnz11.so libnnz10.so
    or (HP-UX)
    ln u2013s libnnz11.sl libnnz10.sl
    Volker
    Second part: For the DP job, there can be set different environment settings inside the DP job.
    Did you check if there are still relicts from the previous release ?
    You could integrate a small pre-exec script into the job and let it plot the output of
    id
    env
    set
    to a logfile, just to see which values the backup is using.
    Edited by: Volker Borowski on Apr 29, 2011 10:12 AM

  • HT1766 What if backup session fails?

    What if backup session fails?

    Are you seeing an error? If so, what is it? Have you just tried to backup again?

  • Online backup getting failed with error BR0278E - Invalid Argument

    Hi All,
    Online backup in Production system is getting failed when taken using DB13.  Last week the SAP Production Server was migrated to SAN and it was up & running fine.
    SAP System - ECC 6
    OS                - AIX 5.3
    Database      - Oracle 10g
    Even the Archive log backup has been successful, but Online backup is failing.  Following is the error log:
    BR0280I BRBACKUP time stamp: 2009-09-10 12.00.46
    BR0057I Backup of database: RTP
    BR0058I BRBACKUP action ID: bebkzprw
    BR0059I BRBACKUP function ID: ant
    BR0110I Backup mode: ALL
    BR0077I Database file for backup: /oracle/RTP/sapbackup/cntrlRTP.dbf
    BR0061I 41 files found for backup, total size 97416.297 MB
    BR0143I Backup type: online
    BR0112I Files will not be compressed
    BR0130I Backup device type: tape
    BR0102I Following backup device will be used: /dev/rmt3.1
    BR0103I Following backup volume will be used: RTPB01
    BR0289I BRARCHIVE will be started at the end of processing
    BR0134I Unattended mode with 'force' active - no operator confirmation allowed
    BR0208I Volume with name RTPB01 required in device /dev/rmt3.1
    BR0280I BRBACKUP time stamp: 2009-09-10 12.00.46
    BR0226I Rewinding tape volume in device /dev/rmt3 ...
    BR0351I Restoring /oracle/RTP/sapbackup/.tape.hdr0
    BR0355I from /dev/rmt3.1 ...
    BR0241I Checking label on volume in device /dev/rmt3.1
    BR0242I Scratch volume in device /dev/rmt3.1 will be renamed to RTPB01
    BR0280I BRBACKUP time stamp: 2009-09-10 12.00.46
    BR0226I Rewinding tape volume in device /dev/rmt3 ...
    BR0202I Saving /oracle/RTP/sapbackup/.tape.hdr0
    BR0203I to /dev/rmt3.1 ...
    We have checked using different tapes, restarted SAP, etc but could not resolve it.
    Please suggest further.
    Thanks
    Vamsi

    Hi Vamsi
    Please go through below link
    Re: onLine backup fails with error BR0278E
    There is similar problem with the exact error you are facing for online backup and its solution is given in above link.
    Let us know if this information was useful to you.
    with regards,
    Parin Hariyani

Maybe you are looking for