I will show you the following two ways of taking a backup of an existing database:
- Using a SQL Query
- Using the Object Explorer
Taking Backup Using Object Explorer
Let us try the first technique now. Open SQL Server and login using valid credentials.
Step 1
Right-click on the database. Go to Tasks -> Back Up.
Step 2
Click on Add.
Step 3
Provide a valid path and name to the database. Append “.bkp” to the file name. Click OK.
Step 4
Click OK.

We get the backup of the database in the desired location.
Taking Backup Using SQL Query
Execute the following SQL query:
BACKUP DATABASE mydb TO DISK = 'E:\DatabaseBkp\DB2.bak'
Execute the query.
We will get the following message. Let us now check the folder.
As we can see, we have a new database in the folder. This is how we take a backup of a SQL Server database.

Sibeesh VenuPosted May 30, 2015, 1:14 PM
Good one.
Santhakumar MunuswamyPosted May 30, 2015, 12:33 PM
Thanks for nice article..
Rahul PrajapatPosted May 30, 2015, 9:52 AM
Thanks
Shailesh UkePosted May 30, 2015, 9:21 AM
Nice ...
NitinPosted May 29, 2015, 11:51 AM
Thanks Dominique Ceja
Dominique CejaPosted May 29, 2015, 10:51 AM
Thanks
Gopi ChandPosted May 29, 2015, 8:22 AM
Visual explanation :)
Sibeesh VenuPosted May 29, 2015, 7:28 AM
Nice one.