title | ms.custom | ms.date | ms.prod | ms.prod_service | ms.reviewer | ms.technology | ms.topic | helpviewer_keywords | ms.assetid | author | ms.author | |||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Define logical backup device - tape |
seo-lt-2019 |
12/17/2019 |
sql |
backup-restore |
backup-restore |
conceptual |
|
66f36e1d-0287-4fac-8a51-71f9f0d7ad5b |
MikeRayMSFT |
mikeray |
[!INCLUDEappliesto-ss-xxxx-xxxx-xxx-md] This topic describes how to define a logical backup device for a tape drive in [!INCLUDEssCurrent] by using [!INCLUDEssManStudioFull] or [!INCLUDEtsql]. A logical device is a user-defined name that points to a specific physical backup device (a disk file or tape drive). The initialization of the physical device occurs later, when a backup is written to the backup device.
Note
Support for tape backup devices will be removed in a future version of [!INCLUDEssNoVersion]. Avoid using this feature in new development work, and plan to modify applications that currently use this feature.
In This Topic
-
Before you begin:
-
To define a logical backup device for a tape drive, using:
-
The tape drive or drives must be supported by the Microsoft Windows operating system.
-
The tape device must be connected physically to the computer that is running an instance of [!INCLUDEssNoVersion]. Backing up to remote tape devices is not supported.
Requires membership in the diskadmin fixed server role.
Requires permission to write to the disk.
-
After connecting to the appropriate instance of the [!INCLUDEmsCoName] [!INCLUDEssDEnoversion], in Object Explorer, click the server name to expand the server tree.
-
Expand Server Objects, and then right-click Backup Devices.
-
Click New Backup Device, which opens the Backup Device dialog box.
-
Enter a device name.
-
For the destination, click Tape and select a tape drive that is not already associated with another backup device. If no such tape drives are available, the Tape option is inactive.
-
To define the new device, click OK.
To back up to this new device, add it to the Back up to: field in the Back up Database (General) dialog box. For more information, see Create a Full Database Backup (SQL Server).
-
Connect to the [!INCLUDEssDE].
-
From the Standard bar, click New Query.
-
Copy and paste the following example into the query window and click Execute. This example shows how to use sp_addumpdevice to define a logical backup device for a tape. The example adds the tape backup device named
tapedump1
, with the physical name\\.\tape0
.
USE AdventureWorks2012 ;
GO
EXEC sp_addumpdevice 'tape', 'tapedump1', '\\.\tape0' ;
GO
BACKUP (Transact-SQL)
sys.backup_devices (Transact-SQL)
sp_addumpdevice (Transact-SQL)
sp_dropdevice (Transact-SQL)
Backup Devices (SQL Server)
Define a Logical Backup Device for a Disk File (SQL Server)
View the Properties and Contents of a Logical Backup Device (SQL Server)