BACKUP DATABASE database_name DISK

Backup Sql Server Database

A SQL Server database can be backed up in two ways: 

1. Using the BACKUP DATABASE command

2. Using the BACKUP LOG command

The BACKUP DATABASE command can be used to back up an entire database. The BACKUP LOG command can be used to back up the transaction log. 

When you back up a database, you can either back up the entire database, or you can back up only the data files and not the transaction log. When you back …