Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / database / SQL-Server

Backup and Restore SQL Server database

3.90/5 (6 votes)
22 Nov 2011CPOL 41.8K  
How to backup and restore SQL Server database schema
Say, we have a database named "Employee" in SQL Server. Now we want to backup the database and then restore the backup database file.

Execute the following SQL to backup Employee to Disk:
SQL
Backup Database Employee to Disk='D\DatabaseBack\emp_backup.bak'


After successfully backup, if we want to restore the backup(.bak) file, we have to execute the following SQL:

SQL
Restore Database Employee From Disk='D\DatabaseBack\emp_backup.bak' 


Differential backups only backup the data pages that have changed since the last full backup. Following is the SQL backup command to perform a differential backup:

SQL
BACKUP DATABASE Employee
TO DISK = ‘C:\DatabaseBack\Employee .bak’
WITH DIFFERENTIAL

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)