Check Portal System Database Backup status

Hi,
we have a portal system and i have performed an online DB-Backup using brtools.
Like DB02 in ABAP Stack, is there a way to display the status of the Backup either using NWA at SAP level or using brtools at OS level ?
Thank you,
Mohan.

This is not possible from the portal page (NWA) but you can view the BRBACKUP logs from the OS level located at /oracle/SID/sapbackup and archive backup logs present at /oracle/SID/saparch.
You can make use of the DBACOCKPIT function from another system like suggested above.
Regards
RB

Similar Messages

  • 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

  • System database Backups

    Should I backup my system databases?

    The answer is "yes" for master, model and msdb.
    The answer is "no" for tempdb and the resource database.
    I usually do my system databases daily, same job as the other databases' full backup.
    Tibor Karaszi, SQL Server MVP |
    web | blog

  • Backup status e-mail

    Hello,
    I would like to receive database backup status ( completed or failed) of SAP system by e-mail. The backup is scheduled in crontab.
    I can see the Backup status node in CCMS but how can I configure it to send email?
    Please help.
    Regards,
    Sudhir

    Hi Sudhir,
    The belo note can help you to acheive this.
    617547 - RZ20: Sending alerts as mail and SMS
    Regards,
    Arun.

  • Report and alerts for Exchange Server database backup

    Hi
    i am trying to use the Get-DailyBackupAlerts.ps1
    to check the exchange database backup state every day by email 
    and i am using this scripts its working fine but I have problem with sending email  
    here below the Error
    04/16/2015 09:46:53 Alert email will be sent
    04/16/2015 09:46:53 Report summary: Alerts 23, OK 0
    04/16/2015 09:46:53 Sending email report
    04/16/2015 09:46:53 Cannot validate argument on parameter 'From'. The argument is null or empty. Supply an argument that is not null or empty and then try the command again.
    04/16/2015 09:46:53 Finished.
    my setting the in the file Settings.xml as below 
    <EmailSettings>
        <SMTPServer>webmail.domain.com</SMTPServer>
        <SMTPPort>25</SMTPPort>
        <MailFrom>[email protected]</MailFrom>
        <MailTo>[email protected]</MailTo>
      </EmailSettings>
    any one can help ?
    Mahmoud

    Dear Mahmoud,
    In the SMTP server settings below you need to replace with your HUB server FQDN if its 2010 or Mailbox server FQDN if its 2013 and after that i think it should work.
    <SMTPServer>webmail.domain.com</SMTPServer>
    Remember to mark as helpful if you find my contribution useful or as an answer if it does answer your question.That will encourage me - and others - to take time out to help you Check out my latest blog posts on http://exchangequery.com Thanks Sathish
    (MVP)

  • Required to take periodic backup status report from SQL server

    Dear All,
    I need to take periodic database backup status of all sql server instance in different domain. But, i am doing it by logging into all sql server manually.
    We can do it through option called ' Managed server' in sql server by connecting required server.
    But, I want to know the script and any other option in sql server to connect all sql instance in different domain group to take backup status report in single run.
    I need your help here and share the experience if you implemented ever in your environment.

    see
    http://www.mssqltips.com/sqlservertip/1601/script-to-retrieve-sql-server-database-backup-history-and-no-backups/
    You can use above scripts to capture the information
    For automated execution wrap it in a procedure with INSERT statement to dump the results onto a table and call the procedure from sql agent job to execute  it based on a predefined schedule.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Need a Script to check Database backup chain for revovery

    Dear All,
    any having a handy script to check database backup chain ,
    Database A --> Full backup  -- Diff -- log1 --Log 2 ...... and scan through the files to validate if we can recover the database using the avaiable backups.
    Regards
    Sufian
    Mohd Sufian www.sqlship.wordpress.com Please mark the post as Answered if it helped.

    You can use below TSQL
    set nocount on
    go
    if exists ( select name from tempdb..sysobjects where name like '#DatabasesBackupsStatus%')
    drop table #DatabasesBackupsStatus
    GO
    create table #DatabasesBackupsStatus
    ServerName varchar(100) null,
    DBName varchar(100) null,
    RecoveryModel varchar(100) null,
    LastFullbackup datetime null,
    days_since_Lastfullbackup int null,
    days_since_Lastdiffbackup int null,
    HOURS_since_LastLogbackup int,
    DBStatus varchar (100) null,
    FullBackupLocation varchar(1000) null,
    MEDIASET INT,
    JobOwner varchar(100) null
    Go
    insert into #DatabasesBackupsStatus(ServerName,DBName)
    select convert(varchar,serverproperty('ServerName')),a.name
    from master.dbo.sysdatabases a
    where a.name <> 'tempdb'
    update #DatabasesBackupsStatus
    set LastFullbackup=b.backup_start_date,
    days_since_Lastfullbackup=datediff(dd,b.backup_start_date,getdate()),
    MEDIASET=b.media_set_id
    from #DatabasesBackupsStatus a,(select database_name,MAX(media_set_id)media_set_id,max(backup_start_date) backup_start_date
    from msdb..backupset where type='D' group by database_name)b
    where a.DBName=b.database_name
    update #DatabasesBackupsStatus
    set RecoveryModel=convert(sysname,DatabasePropertyEx(DBName,'Recovery'))
    update #DatabasesBackupsStatus
    set DBStatus=convert(sysname,DatabasePropertyEx(DBName,'Status'))
    update d
    set d.FullBackupLocation=b.physical_device_name
    from #DatabasesBackupsStatus d , msdb..backupmediafamily b
    where d.MEDIASET =b.media_set_id
    update d
    set d.days_since_Lastdiffbackup=datediff(dd,b.backup_finish_date,getdate())
    from #DatabasesBackupsStatus d , (select database_name,max(backup_finish_date) backup_finish_date
    from msdb..backupset where type ='I' group by database_name) b
    where d.DBName = b.database_name
    update d
    set d.JobOwner=b.[user_name]
    from #DatabasesBackupsStatus d , msdb..backupset b
    where d.MEDIASET = b.media_set_id
    update d
    set d.HOURS_since_LastLogbackup=datediff(hh,b.backup_finish_date,getdate())
    from #DatabasesBackupsStatus d , (select database_name,max(backup_finish_date) backup_finish_date
    from msdb..backupset where type ='L' group by database_name) b
    where d.DBName = b.database_name
    AND d.RecoveryModel != 'SIMPLE'
    Go
    select * from #DatabasesBackupsStatus
    Go
    drop table #DatabasesBackupsStatus
    Please Mark This As Answer if it solved your issue 
    Please Mark This As Helpful if it helps to solve your issue
    Thanks,
    Shashikant

  • How to make automatic backups of NW Portal systems?

    Hi All,
    We have SAP CRM, ECC and NW Portal using MaxDB databases.
    For DB Backups and monitoring, we are using Database Studio.
    But in this DatabaseStudio, we have no calendar and no automatic backups is possible. In SAP ECC and CRM, we can access the tcode DB13 which give us acces to the DBA Planning Calendar.
    Connecting on ECC or CRM backends, we can then plan automatic backups.
    But for Portal I dont' find how to use a calendar for automatic backups.
    I saw that in DB13, you can select the system you want to backup. Would it be possible to add the Portal and to manage all systems, including portal, in on single backend point? If yes, how can I add portal system / db to this DB13 menu?
    If not, do you know if there is any other way to have automatic backups of NW Portal? Or any external tool we can use for doing this?
    Thank you in advance for your help,
    Xavier Monnet.

    > But for Portal I dont' find how to use a calendar for automatic backups.
    >
    > I saw that in DB13, you can select the system you want to backup. Would it be possible to add the Portal and to manage all systems, including portal, in on single backend point? If yes, how can I add portal system / db to this DB13 menu?
    You can put any database in DBACOCKPIT and schedule centrally using DB13C.
    > If not, do you know if there is any other way to have automatic backups of NW Portal? Or any external tool we can use for doing this?
    For bigger production environments I'd suggest getting an external backup too and schedule everything centrally.
    Be aware that especially in a Java environment (such as a portal) it's not enough to just backup the database, you have to backup the filesystem content at the same time to be able to restore your system in case of a failure. If you have just the database backup this won't help.
    Markus

  • Check the system status

    Hi,
    I have a simple question for you..
    How can I check the system status when i save my order...
    The purpose is not save orders whith errors.
    Thanks,
    Hugo.

    Hi Hugo,
    You need not do anything with the status.
    Just create a BADI Implementation for the BADI definition ORDER_SAVE in SE19.
    In the method PREPARE, call the function module CRM_MESSAGES_CHECK_FOR_ERRORS to check for errors in the order. If there are errors in the order then call the function module CRM_MESSAGE_COLLECT to show the additional error message 'Order can't be saved as it contains error' and exit.
    You can also do any additional validation that you want. Save and activate the BADI implementation.
    Now create an order and see if the code written works or not.
    <b>Reward points if it helps.</b>

  • Backup blocks all check logical validate database

    Hello,
    From Metalink : How To Use RMAN To Check For Logical & Physical Database Corruption [ID 283053.1]
    The following example shows how to validate all datafiles:
    run {
    allocate channel d1 type disk;
    backup blocks all check logical validate database;
    release channel d1;
    Does this following command just check for corruption , or is it actually trying to backup the datafiles to the disks ?
    Thanks

    Hello,
    The BACKUP VALIDATE statement is used for checking Block Corruption not for running a Backup.
    You'll have more detail on the following links:
    http://download.oracle.com/docs/cd/B28359_01/backup.111/b28270/rcmvalid.htm#CHDECGBJ
    http://download.oracle.com/docs/cd/B28359_01/backup.111/b28270/rcmvalid.htm#CHDCEHFD
    Hope this help.
    Best regards,
    Jean-Valentin

  • Backups of system databases

    can anyone elaborate on the risks associated with not backing up default MSSQL system databases (i.e. master, msdb) etc. When would you need to restore data from those databases? What kind of data do they hold? How often do you back them up?

    System databases are the core of your SQL Server. Assume a disaster happens, and you lose your system. If you want your system back you need System Databases.
    A corruption to your SQL server can cause at any time, if you need your whole system then system databases are required.
    Assume you have all your user databases backup after a disaster/corruption and you manage to restore them to a different system, but still you wont be able to login to servers, all your jobs would be lost etc.
    You need to backup those as a minimum when you have changes made to the system, eg Any configuration change, Any settings change, Any job created/updated/deleted, any new login created/updated/deleted.
    Ideally as these are very small databases once you should not have much issues backing it up. On a safer side a week once would be enough, but as I said, if there is a major change which impact system databases I would back it up.
    Read this http://msdn.microsoft.com/en-gb/library/ms178028.aspx to get an understanding about different system databases.
    Regards, Ashwin Menon My Blog - http:\\sqllearnings.com

  • Backup error; datafiles is already in backup status

    Dear Experts,
    While we are starting online db backup, we are getting following errors;
    BR0280I BRBACKUP time stamp: 2009-07-13 02.16.07
    BR0319I Control file copy created: /oracle/TBP/sapbackup/cntrlTBP.dbf 34783232
    BR0328E Database file /oracle/TBP/sapdata1/system_1/system.data1 of tablespace SYSTEM is already in backup status
    BR0328E Database file /oracle/TBP/sapdata1/undo_1/undo.data1 of tablespace PSAPUNDO is already in backup status
    BR0328E Database file /oracle/TBP/sapdata1/sysaux_1/sysaux.data1 of tablespace SYSAUX is already in backup status
    BR0328E Database file /oracle/TBP/sapdata2/sr3_1/sr3.data1 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file /oracle/TBP/sapdata3/sr3700_1/sr3700.data1 of tablespace PSAPSR3700 is already in backup status
    BR0328E Database file /oracle/TBP/sapdata4/sr3usr_1/sr3usr.data1 of tablespace PSAPSR3USR is already in backup status
    BR0328E Database file /oracle/TBP/sapdata4/sr3700_2/sr3700.data2 of tablespace PSAPSR3700 is already in backup status
    BR0328E Database file /oracle/TBP/sapdata1/sr3_2/sr3.data2 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file /oracle/TBP/sapdata2/sr3_3/sr3.data3 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file /oracle/TBP/sapdata3/sr3_4/sr3.data4 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file /oracle/TBP/sapdata4/sr3_5/sr3.data5 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file /oracle/TBP/sapdata1/sr3_6/sr3.data6 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file /oracle/TBP/sapdata3/sr3_7/sr3.data7 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file /oracle/TBP/sapdata4/sr3_8/sr3.data8 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file /oracle/TBP/sapdata2/sr3700_3/sr3700.data3 of tablespace PSAPSR3700 is already in backup status
    BR0328E Database file /oracle/TBP/sapdata1/sr3_9/sr3.data9 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file /oracle/TBP/sapdata2/sr3_10/sr3.data10 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file /oracle/TBP/sapdata3/sr3_11/sr3.data11 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file /oracle/TBP/sapdata4/sr3_12/sr3.data12 of tablespace PSAPSR3 is already in backup status
    BR0056I End of database backup: beazuchh.anf 2009-07-13 02.16.08
    BR0280I BRBACKUP time stamp: 2009-07-13 02.16.08
    I've tried to take datafiles out of backup mode with following commands ;
    SQL> select * from v$backup;
         FILE# STATUS                CHANGE# TIME
             1 ACTIVE              492340220 05-JUL-09
             2 ACTIVE              492340220 05-JUL-09
             3 ACTIVE              492340220 05-JUL-09
             4 ACTIVE              492340220 05-JUL-09
             5 ACTIVE              492340220 05-JUL-09
             6 ACTIVE              492340220 05-JUL-09
             7 ACTIVE              492340220 05-JUL-09
             8 ACTIVE              492340220 05-JUL-09
             9 ACTIVE              492340220 05-JUL-09
            10 ACTIVE              492340220 05-JUL-09
            11 ACTIVE              492340220 05-JUL-09
         FILE# STATUS                CHANGE# TIME
            12 ACTIVE              492340220 05-JUL-09
            13 ACTIVE              492340220 05-JUL-09
            14 ACTIVE              492340220 05-JUL-09
            15 ACTIVE              492340220 05-JUL-09
            16 ACTIVE              492340220 05-JUL-09
            17 ACTIVE              492340220 05-JUL-09
            18 ACTIVE              492340220 05-JUL-09
            19 ACTIVE              492340220 05-JUL-09
    19 rows selected.
    SQL> select 'alter database datafile '
      2  || file#  || ' end backup;'
      3  from v$backup where status = 'ACTIVE';
    'ALTERDATABASEDATAFILE'||FILE#||'ENDBACKUP;'                                   
    alter database datafile 1 end backup;                                          
    alter database datafile 2 end backup;                                          
    alter database datafile 3 end backup;                                          
    alter database datafile 4 end backup;                                          
    alter database datafile 5 end backup;                                          
    alter database datafile 6 end backup;                                          
    alter database datafile 7 end backup;                                          
    alter database datafile 8 end backup;                                          
    alter database datafile 9 end backup;                                          
    alter database datafile 10 end backup;                                         
    alter database datafile 11 end backup;                                         
    'ALTERDATABASEDATAFILE'||FILE#||'ENDBACKUP;'                                   
    alter database datafile 12 end backup;                                         
    alter database datafile 13 end backup;                                         
    alter database datafile 14 end backup;                                         
    alter database datafile 15 end backup;                                         
    alter database datafile 16 end backup;                                         
    alter database datafile 17 end backup;                                         
    alter database datafile 18 end backup;                                         
    alter database datafile 19 end backup;                                         
    when we execute above script we are getting following errors;
    alter database datafile 1 end backup
    ERROR at line 1:
    ORA-01235: END BACKUP failed for 1 file(s) and succeeded for 0
    ORA-01234: cannot end backup of file 1 - file is in use or recovery
    ORA-01110: data file 1: '/oracle/TBP/sapdata1/system_1/system.data1'
    alter database datafile 2 end backup
    ERROR at line 1:
    ORA-01235: END BACKUP failed for 1 file(s) and succeeded for 0
    ORA-01234: cannot end backup of file 2 - file is in use or recovery
    ORA-01110: data file 2: '/oracle/TBP/sapdata1/undo_1/undo.data1'
    alter database datafile 3 end backup
    ERROR at line 1:
    ORA-01235: END BACKUP failed for 1 file(s) and succeeded for 0
    ORA-01234: cannot end backup of file 3 - file is in use or recovery
    ORA-01110: data file 3: '/oracle/TBP/sapdata1/sysaux_1/sysaux.data1'
    alter database datafile 4 end backup
    ERROR at line 1:
    ORA-01235: END BACKUP failed for 1 file(s) and succeeded for 0
    ORA-01234: cannot end backup of file 4 - file is in use or recovery
    ORA-01110: data file 4: '/oracle/TBP/sapdata2/sr3_1/sr3.data1'
    alter database datafile 5 end backup
    ERROR at line 1:
    ORA-01235: END BACKUP failed for 1 file(s) and succeeded for 0
    ORA-01234: cannot end backup of file 5 - file is in use or recovery
    ORA-01110: data file 5: '/oracle/TBP/sapdata3/sr3700_1/sr3700.data1'
    How can we take datafile out of backup mode ?
    Regards
    Atakan

    Hi,
    You can take out tablespace from backp mode from below sql.
    SQL>ALTER TABLESPACE <tablespace name> END BACKUP;
    Check Re: backup problem
    Hope this helps
    Thanks
    Sushil

  • DBACockpit Configuration - Remote Database backup of Java Stack.

    Hi All,
    I am configuring remote database backup of my SAP Java stack system.
    I have successfully connected the system in dbacockpit. I have gateway installed also on the remote host system. but Database scheduling on DB13 failed.
    On the OS of CEN system, I can connect to the host system of the remote using the OPS$ logon and i.e
    sqlplus /@SID as sysdba  - (It connected, to confirm i querried the v$instance I was also able to shutdown the remote system)
    E:\>sqlplus /@SID as sysdba
    SQL*Plus: Release 10.2.0.4.0 - Production on Wed May 18 15:37:46 2011
    Copyright (c) 1982, 2007, Oracle.  All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    But when I ran the brtools to perform the backup I got this error.
    "BR0301W SQL error -12560 at location BrDbConnect-2, SQL statement:

    Hi Niyi,
    This is a TNS error. The system is not able to connect TNS by using br*tools.
    Firstly, check your environment variables. They should be as same as java system environmnt variables.
    Secondly, check the link below;
    [BR0301W SQL error -1017;
    You need to create a synonym and SAPUSER table for the gateway installation <sid>adm user on Java database. By doing so, br*tools will be able to connect to the java database.
    Best regards,
    Orkun Gedik

  • Check list for database

    Hi All,
    I need to maintain the list of important checklist for a database e.g. backup and recovert policy, authentication method
    can u help me in getting some other points in daily routine.
    Thanks in advance.
    Bhupinder

    Hi,
    You can check the below points:
    ->Using the SAP BW Analysis Tool (transaction RSRV),perform extensive tests on all important SAP BW Objects to ensure their correctness prior and after to the upgrade.
    ->Remove unnecessary SAP BW temporary database objects
    ->Ensure DB Statistics are up to date prior and after to the upgrade
    ->Validate the SAP BW (ABAP) Data Dictionary and the Database Data Dictionary for consistency
    ->Check SAP BW Support Package status
    ->Check InfoObject, DSo and Infocube status
    ->All ODS data loads must be activated.
    ->All Web Report objects should be consistent prior and after the upgrade.
    ->Complete any Logistic V3 data extractions and suspend V3 collection processes
    ->Load and Empty all Data mart Delta Queues in SAP BW
    Hope this helps....
    Rgs,
    Ravikanth.
    Edited by: Ravikanth Indurthi on Jan 2, 2012 8:02 PM

  • Full Database Backup in DB13 for MS SQL Server databases

    Hello,
    We have some SAP systems using the MS SQL Server database. I want to know if it is possible to setup the Full Database Backup option in transaction DB13 to store the files in a hard disk space.
    I already did this type of configuration in SAP systems in Oracle databases and for this I used the init<SID>.sap where we can put all the configuration, for instance the disk path where we want to save the backup files! But for MS SQL Server databases, in DB13, I don´t know how to do that, when I add the "Full Database Backup" option in DB13, this show me some options but only for tape, but I don´t want to store the backup files in tapes, I want to store/save the files on the server disk itself or else to an external disk but I don´t see where I can set this way of storage!
    This is what you see in DB13 (when using a MS SQL Server database) in "Full Database Backup" and as you see I only have options for TAPE not for a disk or other type of storage! How can I do that? (if that is possible):
    Can you help me please?
    Kind regards,
    samid raif

    Hello Raja
    Sorry for the delay of my answer! Many thanks for that tip, it helps a lot and it solve the last error/problem that I reported here, in fact, the problem was we had named the device with two words containing a space. So we removed that space from the backup device (in SQL management studio) with one word only and the job runs successfully without any errors!
    It works in Development and Quality systems but in our Production system (AM1) the Full backup option in DB13 stopped with the following error, in fact the error is on verification of backup, it means that the Full backup finished with success, but when it does the backup verification, the job in DB13 stops with an error, the following one:
    ***************************** SQL Job information   ******************************
    Jobname:    SAP CCMS Full DB Backup of AM1 [20140417103726-4-103726]
    Type:       TSQL
    DB-Name:    AM1
    For Run:    20140417  10:37:26
    **************************** Job history information  *****************************
    Stepname:   CCMS-step 1
    Command:    declare @exeStmt nvarchar(2000) exec am1.sap_backup_databases @dbList=
                "AM1",@r3Db="AM1",@bDev="fullprd",@expDays= 27,@jobName= "SAP CCMS Ful
                l DB Backup of AM1 [20140417103726-4-103726]",@bkupChecksum="Y",@bkupT
                ype="F",@nativeBkup="N",@exeDate = "20140417103726",@bkupSim = "N",@fo
                rmat = 0,@init = 0,@bkupDb = "AM1",@unload = 0,@exeStmt = @exeStmt OUT
                PUT
    Status:     (success)
    Message:    3014
    Severity:                                                                                                                                                                                                                                                    0
    Duration:   4  hours(s)  41 min(s) 22 sec(s)
    Last msg:   Executed as user: am1. Processed 7434328 pages for database 'AM1', fil
                e 'A01DATA1' on file 1. [SQLSTATE 01000] (Message 4035)  Processed 315
                1504 pages for database 'AM1', file 'A01DATA2' on file 1. [SQLSTATE 01
                000] (Message 4035)  Processed 4574152 pages for database 'AM1', file
                'A01DATA3' on file 1. [SQLSTATE 01000] (Message 4035)  Processed 44363
                92 pages for database 'AM1', file 'A01DATA4' on file 1. [SQLSTATE 0100
                0] (Message 4035)  Processed 25598 pages for database 'AM1', file 'A01
                LOG1' on file 1. [SQLSTATE 01000] (Message 4035)  BACKUP DATABASE succ
                essfully processed 19621974 pages in 16881.638 seconds (9.521 MB/sec).
                 [SQLSTATE 01000] (Message 3014).  The step succeeded.
                        <------------- End of Job Step History --------------->
    Stepname:   CCMS-step 2
    Command:    declare @exeStmt nvarchar(2000) exec am1.sap_verify_backups @nativeBku
                p = "N",@bkupSim = "N",@bDev = "fullprd",@bkupChecksum = "Y",@exeDate
                = "20140417103726",@unload = 1,@dbCnt =1,@exeStmt = @exeStmt OUTPUT
    Status:     (failure)
    Message:    3201
    Severity:                                                                                                                                                                                                                                                   16
    Duration:   0  hours(s)  8  min(s) 30 sec(s)
    Last msg:   Executed as user: am1. Cannot open backup device 'fullprd(\\10.0.0.45\
                backupsap\prd\prdfullqua.bak)'. Operating system error 1265(error not
                found). [SQLSTATE 42000] (Error 3201).  The step failed.
                        <------------- End of Job Step History --------------->
    **************************** Job history information  *****************************
    Can you help me please with this one!? Can you tell me why in verification it stops with that error?
    Kind regards,
    samid raif

Maybe you are looking for