Create a Full Database Backup (SQL Server)
Using SQL Server Management Studio
When you specify a back up task by using SQL Server Management Studio, you can generate the corresponding Transact-SQL BACKUP script by clicking the Script button and selecting a script destination.
Back up a database
After connecting to the appropriate instance of the Microsoft SQL Server Database Engine, in Object Explorer, click the server name to expand the server tree.
Expand Databases, and either select a user database or expand System Databases and select a system database.
Right-click the database, point to Tasks, and then click Back Up. The Back Up Database dialog box appears.
General Page
In the Database drop-down list, verify the database name. Optionally, you can select a different database from the list.
The Recovery model text box is for reference only. You can perform a database backup for any recovery model (FULL, BULK_LOGGED, orSIMPLE).
In the Backup type drop-down list, select Full.
Note that after creating a full database backup, you can create a differential database backup; for more information, see Create a Differential Database Backup (SQL Server).
Optionally, you can select the Copy-only backup checkbox to create a copy-only backup. A copy-only backup is a SQL Server backup that is independent of the sequence of conventional SQL Server backups. For more information, see Copy-Only Backups (SQL Server). A copy-only backup is not available for the Differential backup type.
For Backup component, select the Database radio button.
In the Destination section, use the Back up to drop-down list to select the backup destination. Click Add to add additional backup ojects and/or destinations.
To remove a backup destination, select it and click Remove. To view the contents of an existing backup destination, select it and clickContents.
Media Options Page
To view or select the media options, click Media Options in the Select a page pane.
Select an Overwrite Media option, by clicking one of the following:
Important |
---|
The Overwrite media option is disabled if you selected URL as the backup destination in the General page. For more information, see Back Up Database (Media Options Page)
|
Back up to the existing media set
Important |
---|
If you plan to use encryption, do not select this option. If you select this option, the encryption options in the Backup Options page will be disabled. Encryption is not supported when appending to the existing backup set.
|
For this option, click either Append to the existing backup set or Overwrite all existing backup sets
Optionally, select Check media set name and backup set expiration to cause the backup operation to verify the date and time at which the media set and backup set expire.
Optionally, enter a name in the Media set name text box. If no name is specified, a media set with a blank name is created. If you specify a media set name, the media (tape or disk) is checked to see whether the actual name matches the name you enter here.
Back up to a new media set, and erase all existing backup sets
For this option, enter a name in the New media set name text box, and, optionally, describe the media set in the New media set descriptiontext box.
In the Reliability section, optionally check:
The Transaction log section is inactive unless you are backing up a transaction log (as specified in the Backup type section of the Generalpage).
In the Tape drive section, the Unload the tape after backup option is active if you are backing up to a tape drive (as specified in theDestination section of the General page). Clicking this option activates the Rewind the tape before unloading option.
Backup Options Page
To view or select the backup options, click Backup Options in the Select a page pane.
In the Name text box either accept the default backup set name, or enter a different name for the backup set.
In the Description text box, you can optionally enter a description of the backup set.
Specify when the backup set will expire and can be overwritten without explicitly skipping verification of the expiration data:
To have the backup set expire after a specific number of days, click After (the default option), and enter the number of days after set creation that the set will expire. This value can be from 0 to 99999 days; a value of 0 days means that the backup set will never expire.
The default value is set in the Default backup media retention (in days) option of the Server Properties dialog box (Database Settings Page). To access this, right-click the server name in Object Explorer and select properties; then select the Database Settingspage.
To have the backup set expire on a specific date, click On, and enter the date on which the set will expire.
In the Compression section, use the Set backup compression drop-down list to select the desired compression level. SQL Server 2008 Enterprise and later supports backup compression. By default, whether a backup is compressed depends on the value of the backup-compression default server configuration option. However, regardless of the current server-level default, you can compress a backup by checking Compress backup, and you can prevent compression by checking Do not compress backup.
In the Encryption section, use the Encrypt backup checkbox to decide whether to use encryption for the backup. Use the Algorithm drop-down list to select an encryption algorithm. Use the Certificate or Asymmetric key drop-down list, to select an existing Certificate or Asymmetric key. Encryption is supported in SQL Server 2014 or later. For more details on the Encryption options,
You can use the Maintenance Plan Wizard to create database backups.
Examples
A. Full back up to disk to default location
In this example the Sales database will be backed up to disk at the default backup location. A back up of Sales has never been taken.
In Object Explorer, connect to an instance of the SQL Server Database Engine and then expand that instance.
Expand Databases, right-click Sales, point to Tasks, and then click Back Up....
Click OK.
B. Full back up to disk to non-default location
In this example the Sales database will be backed up to disk at E:\MSSQL\BAK. Previous back ups of Sales have been taken.
In Object Explorer, connect to an instance of the SQL Server Database Engine and then expand that instance.
Expand Databases, right-click Sales, point to Tasks, and then click Back Up....
On the General page in the Destination section select Disk from the Back up to: drop-down list.
Click Remove until all existing backup files have been removed.
Click Add and the Select Backup Destination dialog box will open.
Enter E:\MSSQL\BAK\Sales_20160801.bak in the file name text box.
Click OK.
Click OK.
C. Create an encrypted backup
In this example the Sales database will be backed up with encryption to the default backup location. A database master key has already been created. A certificate has already been created called MyCertificate. A T-SQL example of creating a database master key and certificate can be seen at Create an Encrypted Backup.
In Object Explorer, connect to an instance of the SQL Server Database Engine and then expand that instance.
Expand Databases, right-click Sales, point to Tasks, and then click Back Up....
On the Media Options page in the Overwrite media section select Back up to a new media set, and erase all existing backup sets.
On the Backup Options page in the Encryption section select the Encrypt backup check box.
From the Algorithm drop-down list select AES 256.
From the Certificate or Asymmetric key drop-down list select MyCertificate.
Click OK.
D. Backing up to the Microsoft Azure Blob storage service
Common Steps
The three examples below perform a full database backup of Sales to the Microsoft Azure Blob storage service. The storage Account name ismystorageaccount. The container is called myfirstcontainer. For brevity, the first four steps are listed here once and all examples will start onStep 5.
In Object Explorer, connect to an instance of the SQL Server Database Engine and then expand that instance.
Expand Databases, right-click Sales, point to Tasks, and then click Back Up....
On the General page in the Destination section select URL from the Back up to: drop-down list.
Click Add and the Select Backup Destination dialog box will open.
D1. Striped Backup to URL and a SQL Server credential already exists
A stored access policy has been created with read, write, and list rights. The SQL Server credential,https://mystorageaccount.blob.core.windows.net/myfirstcontainer, was created using a Shared Access Signature that is associated with the Stored Access Policy.
Using Transact-SQL
To create a full database backup
Execute the BACKUP DATABASE statement to create the full database backup, specifying:
The basic Transact-SQL syntax for a full database backup is:
BACKUP DATABASE database
TO backup_device [ ,...n ]
[ WITH with_options [ ,...o ] ] ;
Option | Description |
---|
database | Is the database that is to be backed up. |
backup_device [ ,...n ] | Specifies a list of from 1 to 64 backup devices to use for the backup operation. You can specify a physical backup device, or you can specify a corresponding logical backup device, if already defined. To specify a physical backup device, use the DISK or TAPE option:
{ DISK | TAPE } =physical_backup_device_name
For more information, see Backup Devices (SQL Server). |
WITHwith_options [,...o ] | Optionally, specifies one or more additional options, o. For information about some of the basic with options, see step 2. |
Optionally, specify one or more WITH options. A few basic WITH options are described here. For information about all the WITH options,
Basic backup set WITH options:
{ COMPRESSION | NO_COMPRESSION }
In SQL Server 2008 Enterprise and later only, specifies whether backup compression is performed on this backup, overriding the server-level default.
ENCRYPTION (ALGORITHM, SERVER CERTIFICATE |ASYMMETRIC KEY)
In SQL Server 2014 or later only, specify the encryption algorithm to use, and the Certificate or Asymmetric key to use to secure the encryption.
DESCRIPTION = { 'text' | @text_variable }
Specifies the free-form text that describes the backup set. The string can have a maximum of 255 characters.
NAME = { backup_set_name | @backup_set_name_var }
Specifies the name of the backup set. Names can have a maximum of 128 characters. If NAME is not specified, it is blank.
Basic backup set WITH options:
By default, BACKUP appends the backup to an existing media set, preserving existing backup sets. To explicitly specify this, use the NOINIT option. For information about appending to existing backup sets,
Alternatively, to format the backup media, use the FORMAT option:
FORMAT [ , MEDIANAME= { media_name | @media_name_variable } ] [ , MEDIADESCRIPTION = { text | @text_variable } ]
Use the FORMAT clause when you are using media for the first time or you want to overwrite all existing data. Optionally, assign the new media a media name and description.
Important |
---|
Use extreme caution when you are using the FORMAT clause of the BACKUP statement because this destroys any backups that were previously stored on the backup media.
|
Examples (Transact-SQL)
A. Backing up to a disk device
The following example backs up the complete AdventureWorks2012 database to disk, by using FORMAT to create a new media set.
Transact-SQL
USE AdventureWorks2012;
GO
BACKUP DATABASE AdventureWorks2012
TO DISK = 'Z:\SQLServerBackups\AdventureWorks2012.Bak'
WITH FORMAT,
MEDIANAME = 'Z_SQLServerBackups',
NAME = 'Full Backup of AdventureWorks2012';
GO
B. Backing up to a tape device
The following example backs up the complete AdventureWorks2012 database to tape, appending the backup to the previous backups.
Transact-SQL
USE AdventureWorks2012;
GO
BACKUP DATABASE AdventureWorks2012
TO TAPE = '\\.\Tape0'
WITH NOINIT,
NAME = 'Full Backup of AdventureWorks2012';
GO
C. Backing up to a logical tape device
The following example creates a logical backup device for a tape drive. The example then backs up the complete AdventureWorks2012 database to that device.
Transact-SQL
-- Create a logical backup device,
-- AdventureWorks2012_Bak_Tape, for tape device \\.\tape0.
USE master;
GO
EXEC sp_addumpdevice 'tape', 'AdventureWorks2012_Bak_Tape', '\\.\tape0'; USE AdventureWorks2012;
GO
BACKUP DATABASE AdventureWorks2012
TO AdventureWorks2012_Bak_Tape
WITH FORMAT,
MEDIANAME = 'AdventureWorks2012_Bak_Tape',
MEDIADESCRIPTION = '\\.\tape0',
NAME = 'Full Backup of AdventureWorks2012';
GO
Using PowerShell
Use the Backup-SqlDatabase cmdlet. To explicitly indicate that this is a full database backup, specify the -BackupAction parameter with its default value, Database. This parameter is optional for full database backups.
Examples
A. Full local backup
The following example creates a full database backup of the MyDB database to the default backup location of the server instanceComputer\Instance. Optionally, this example specifies -BackupAction Database.
Windows PowerShell
Backup-SqlDatabase -ServerInstance Computer\Instance -Database MyDB -BackupAction Database
B. Full backup to Microsoft Azure
The following example creates a full backup of the database Sales on the MyServer instance to the Microsoft Azure Blob Storage service. A stored access policy has been created with read, write, and list rights. The SQL Server credential,https://mystorageaccount.blob.core.windows.net/myfirstcontainer, was created using a Shared Access Signature that is associated with the Stored Access Policy. The PowerShell command uses the BackupFile parameter to specify the location (URL) and the backup file name.
Windows PowerShell
import-module sqlps;
$container = 'https://mystorageaccount.blob.core.windows.net/myfirstcontainer';
$FileName = 'Sales.bak';
$database = 'Sales';
$BackupFile = $container + '/' + $FileName ;
Backup-SqlDatabase -ServerInstance "MyServer" –Database $database -BackupFile $BackupFile;
To set up and use the SQL Server PowerShell provider
- SQL Server PowerShell Provider