SQL BACKUP DATABASE

The BACKUP DATABASE statement is used to create a backup copy of a database to prevent data loss. It ensures that data can be restored in case of failure or corruption.

 

Key Features of SQL BACKUP DATABASE

  • Creates a copy of the database for recovery.
  • Requires administrative privileges.
  • Supports full, differential, and transaction log backups.

 

SQL BACKUP DATABASE Syntax (For SQL Server)

BACKUP DATABASE database_name  
TO DISK = 'file_path\backup_file.bak';
  • database_name: The name of the database to back up.
  • file_path: The location where the backup file will be stored.
  • backup_file.bak: The name of the backup file.

 

Example of SQL BACKUP DATABASE (Full Backup)

BACKUP DATABASE SchoolDB  
TO DISK = 'C:\Backup\SchoolDB.bak';

Output:

The SchoolDB database is backed up to the specified location.

 

Creating a Differential Backup

A differential backup contains only the changes made since the last full backup.

BACKUP DATABASE SchoolDB  
TO DISK = 'C:\Backup\SchoolDB_Diff.bak'  
WITH DIFFERENTIAL;

Output:

Only the modified data after the last full backup is saved.

 

Creating a Transaction Log Backup

A transaction log backup saves all changes made since the last transaction log backup.

BACKUP LOG SchoolDB  
TO DISK = 'C:\Backup\SchoolDB_Log.trn';

Output:

The transaction logs are saved to the specified file.

 

Summary

  • BACKUP DATABASE is used to create a full backup of a database.
  • WITH DIFFERENTIAL backs up only modified data since the last full backup.
  • BACKUP LOG saves transaction logs to restore point-in-time changes.
  • Always store backups securely to prevent data loss.