1. Full Backup:
This is the most common and simplest back up method, It contains all the data in a specific database and enough log that is required to recover the database. It is the base of both differential back up and transaction log back up.
2. Differential Backup:
It depend on the latest full backup of data. It contains all the changes that have been made since the last full backup of data.
3. Transaction Log Backup:
The transaction log is a record of all the transactions that have been performed against the database since the last transaction log backup. That means it includes all log records that were not backed up in the last transaction log. With transaction log backup you can recover the database to a specific point of time. This SQL Server backup type is possible only with full or bulk-logged recovery model.
4. File and File group Backup:
This backup type allows you to backup one or more database file or file groups.
5.Partial Backup:
This type of backup is similar to full database backup, but it does not contain all the file groups.This allows you to backup the PRIMARY filegroup, all Read-Write filegroups and any optionally specified files. This is a good option if you have Read-Only filegroups in the database and do not want to backup the entire database all of the time.
Comments
Post a Comment