A full backup contains all the data in a specific database or set of filegroups or files.
Full Backup
- It contains the entire database structure and the related data stored in these structures, to provide recovery.
- Without a full backup, differential backups and transaction action log backups are useless.
- Full backup is available for database , files and filegroups.
- On master database, only full backups are possible.
- Under simple recovery model, file and filegroup backups are available only for read-only filegroups.
--Full Database Backup to a single disk device BACKUP DATABASE [AdventureWorks] TO DISK = N’C:\backup\AdventureWorks.bak’ WITH INIT, NAME = N’AdventureWorks-Full Database Backup’
Tags: Full Backup