One of the first things that needs to be set in order to create the correct backups is to set the proper recovery model for each database. The recovery model basically tells SQL Server what data to keep in the transaction log file and for how long.
Based on the recovery model that is selected, this will also determine what types of backups you can perform and also what types of database restores can be performed.
The 3 types of recovery models that you can choose from are:
Based on the recovery model that is selected, this will also determine what types of backups you can perform and also what types of database restores can be performed.
The 3 types of recovery models that you can choose from are:
- Full
- Simple
- Bulk-Logged