Home » Blog » 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 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #959 Score: 0
    Andrew Jackson
    Moderator
    1 pt

    I want to create a full backup of my database, but i don’t know how to do this. How can i do this?

    #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 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.