13
Disaster Recovery with Full Database Backup in SQL Server

Disaster Recovery with Full Database Backup in SQL Server

Embed Size (px)

Citation preview

Page 1: Disaster Recovery with Full Database Backup in SQL Server

Disaster Recovery with Full Database Backup in SQL Server

Page 2: Disaster Recovery with Full Database Backup in SQL Server

Index View of Topics

• Introduction• When to Use it?• Advantages of using Full Database Backup• How to Create a Full Database Backup• Conclusion• Resources

Page 3: Disaster Recovery with Full Database Backup in SQL Server

Introduction to Full Database Backup

In SQL Server a full database backup helps in reserving the entire database. Also it contains the transaction logs of the database, by which the entire database can be recovered at the time of recovery or Disaster.

A database can be redesigned by restoring it from full database backup.

Page 4: Disaster Recovery with Full Database Backup in SQL Server

When to Use it?

A full database backup can be used when you don’t want to lose your data by executing a commit command for a transaction.

Even the other database recovery features like Transaction Replication , Database Mirroring, Transaction Log Shipping requires the database is set into the full recovery model

Page 5: Disaster Recovery with Full Database Backup in SQL Server

Advantages of Using Full Database Backup

• A full database backup provides a full safety against data loss.

• You can restore the database to the point-in-time if suddenly there is an error occurs in the database.

• The full database backup backs up the detail of every transaction so that it can be restored at the time of recovery.

Page 6: Disaster Recovery with Full Database Backup in SQL Server

How to Create a Full Database Backup The below steps shows how to create a full database

backup using SSMS.• Click on "Databases”.

Page 7: Disaster Recovery with Full Database Backup in SQL Server

• Right click on the database that you want to backup Then, Select "Tasks" and click on "Back Up”.

Page 8: Disaster Recovery with Full Database Backup in SQL Server

• Now, Select the Backup type “Full” to create a full database backup.

Page 9: Disaster Recovery with Full Database Backup in SQL Server

• Then, Click on "Add" button to add the location of the backup file.

Page 10: Disaster Recovery with Full Database Backup in SQL Server

• Give file name and Click "OK“.

Page 11: Disaster Recovery with Full Database Backup in SQL Server

• Again, Click on “Ok” to create full database backup.

Page 12: Disaster Recovery with Full Database Backup in SQL Server

Conclusion

Creating a full database backup in SQL Server creates the whole backup of a database and also it creates the transaction log backup in case if you need to recover only transactions.

A full database backup needed when a user lost his data and there is no option other than restoring the database from full database backup.

Page 13: Disaster Recovery with Full Database Backup in SQL Server

Resources