Home » Topic » How to Create a Full Database Backup in SQL Server ?

How to Create a Full Database Backup in SQL Server ?

Andrew Jackson ~ Modified: November 30th, 2015 ~ ~ 1 Minute Reading

Home Forums How to Create a Full Database Backup in SQL Server ?

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #976 Score: 0
    Stephen West
    Moderator
    4 pts

    Try this:

    USE Databasename;
    GO
    BACKUP DATABASE Databasename
    TO DISK = 'D:\SQLServerBackups\Databasename.Bak'
       WITH FORMAT,
          MEDIANAME = 'D_SQLServerBackups',
          NAME = 'Full Backup of Databasename';
    GO
    #998 Score: 0
    Andrew Jackson
    Moderator
    1 pt

    Thanks Stephen West for the script, it helps me a lot, but I also want to know can i create a backup of the database from SQL Server Management Studio

    #999 Score: 0
    Lincoln Burrows
    Moderator
    16 pts

    Creating backups using SQL Server Management Studio is pretty simple. Look at this blog for a description how to create a full database backup using SQL Server Management Studio and T-SQL: http://www.sqlserverlogexplorer.com/create-full-database-backup/

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.