SQL Server Database Administrator Question:

What is the different types of BACKUPs available in SQL Server?

SQL Server DB Administrator Interview Question
SQL Server DB Administrator Interview Question

Answer:

Complete database backup: This type of backup will backup all the information in the database. Used most commonly for disaster recovery and takes the longest time to backup.
Differential databse backup: The database is divided into partitions that have been modified since last complete backup. Most suitable for large databases. The most recent differential backup contains the changes from previous backups.
Transaction log backups: Backups only the changes logged in the transaction log. The transaction log has all changes logged about a database. Once the changes are accommodated on the database, the log is truncated or backed up.
File/File Group backups: used to recover individual files or file groups. Each filegroup can be individually backed up. This helps in recovery only the required file or filegroup for disaster recovery.


Previous QuestionNext Question
Do you know what is a deadlock and what is a live lock? How will you go about resolving deadlocks?As a part of your job, what are the DBCC commands that you commonly use for database maintenance?