Important: |
|---|
The MyAdvWorks_FullRM database is a copy of AdventureWorks, which uses the simple recovery model. To permit log backups, before taking a full database backup, the database was set to use the full recovery model by using: ALTER DATABASE MyAdvWorks_FullRM SET RECOVERY FULL.
|
This example creates a transaction log backup for the MyAdvWorks_FullRM database to the previously created named backup device, MyAdvWorks_FullRM_log1.
BACKUP LOG MyAdvWorks_FullRM
TO MyAdvWorks_FullRM_log1
GO