SQL Server 2000 backup report

Unanswered SQL Server 2000 backup report

  • Tuesday, November 27, 2012 1:20 AM
     
     

    Hi All,

    Can anyone provide me with a script that fetches the backup status for all the databases in a server and send a mail having all the required fields regarding the last backup date, database name

    But I want this in SQL Server 2000

All Replies

  • Tuesday, November 27, 2012 2:19 AM
     
      Has Code
    select d.name as db_name
      , ( select top 1 backup_start_date 
            from msdb.[dbo].[backupset] 
            where database_name = d.name
            order by backup_start_date desc 
        ) as last_backup_start_date
    from sysdatabases d


    http://www.t-sql.ru

  • Tuesday, November 27, 2012 2:21 AM
     
     
  • Friday, November 30, 2012 5:30 PM
     
     

    Hi Alexey,

    Thank you for your reply, but I was looking for a script which fetches backup report for unlimited servers (we need to specify servers for which we need backup report) at a time and sends the mail.

    I was able to write the scpirt thank you...

    1. I used temp table to note all the servers name
    2. used commad shell scipting to fetch backup report from all the servers and store that in a centralized table in one of the server
    3. used SSIS to fetch the details from centalized table and send a mail in CSV format... :)


    Ananth Kamath