backup database

  • hi all,

    I have configured a job in EM.For full backup and differential backup.

    But i have only two option where i can append to media or overwrite existing backup.

    But as per policy i should maintain automated backup for at least a previous week.

    Current i take

    FULL backup in morning around 10 and differentail after 5 hours.

    Now how can i maintain week backup when i have only two option1.APPEND TO MEDIA

    option2.Overwrite existing media

    thanks,

    Neerav

  • The easiest way is to use the maintenance wizard. It will create a different file for each backup and will delete old files according to the way that you configured the maintenance job. If you don’t want to use the maintenance wizard, you can write your own code that does the same thing.

    Adi

    --------------------------------------------------------------
    To know how to ask questions and increase the chances of getting asnwers:
    http://www.sqlservercentral.com/articles/Best+Practices/61537/

    For better answers on performance questions, click on the following...
    http://www.sqlservercentral.com/articles/SQLServerCentral/66909/

  • If i write this code

    backup database to disk='Path'

    Now what should i use to include date in backup name likewise

    testbackup01-01-2009.bck

  • Nero-1119276 (10/29/2009)


    If i write this code

    backup database to disk='Path'

    Now what should i use to include date in backup name likewise

    testbackup01-01-2009.bck

    You’ll have to use the date and time as a part the file’s name so the names will be unique and you’ll know when the backup was taken. One option to do it is to write the backup statement as dynamic SQL and then use a combination of string manipulating and getdate() functions in order to get the file’s name. Another option that is not widely known is to use the Agent’s tokens. If you’ll use this option, you won’t have to use dynamic SQL and the agent will convert the tokens with the real value. You can read about the SQL Agent tokens here – http://www.sqldev.net/sqlagent/SQLAgentStepTokens.htm%5B/url%5D.

    Personally I’d use the maintenance wizard for that instead of writing it on my own. Any reason that you are not using it?

    Adi

    --------------------------------------------------------------
    To know how to ask questions and increase the chances of getting asnwers:
    http://www.sqlservercentral.com/articles/Best+Practices/61537/

    For better answers on performance questions, click on the following...
    http://www.sqlservercentral.com/articles/SQLServerCentral/66909/

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply