You can create a Database Backup in SQL Server easily by using the SQL Scripts.
Just specify the BACKUP DATABASE statement by simply specifying the name of the database to backup and the path where the backup should be created.
BACKUP DATABASE <database name>
TO BACKUPDEVICE <Path>
WITH <Options>
The BACKUPDEVICE specifies the device used for backup operation. You can use DISK or TAPE option here.
The WITHspecifies various options like Compression, Description, Name for the backup set etc.
Below is a sample backup database statement used to back up the TEST database.
USE TEST; GO BACKUP DATABASE TEST TO DISK = 'E:\TEST1.Bak'