Home » Blog » Topic » How to schedule a SQL Server backup?

How to schedule a SQL Server backup?

Andrew Jackson ~ Modified: September 11th, 2015 ~ ~ 1 Minute Reading

Home Forums How to schedule a SQL Server backup?

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #637 Score: 0
    Andrew Jackson
    Moderator
    1 pt

    I am trying to schedule a daily back up of a SQL Server 2005/2008 Database.

    Can somebody please suggest me any recommendations on that.

    #642 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    Open database backup window then click on script link on top left select “script action to job” then choose schedule and eneter the parameters and sav then it will create a database schedule that will automatically create a backup of thee specified databse

    #768 Score: 0
    Stephen West
    Moderator
    4 pts

    use the following query:

    BACKUP DATABASE [AdventureWorks2012] 
    TO DISK = N'F:\Backup\AW12.bak' 
    WITH CHECKSUM;
Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.