Creating a full backup of your SQL Server database ensures your data is safely preserved before making any major changes, such as a migration. Here are two common ways to do it:
Using SQL Server Management Studio (SSMS)
- Open SQL Server Management Studio and connect to your server.
- In “Object Explorer“, expand Databases and right-click the database you want to back up.
- Select “Tasks” > “Back Up…“
- In the Back Up Database window, confirm the Backup type is set to “Full“.
- Under “Destination“, choose where to save the backup file, or add a new path if needed.
- Click “OK” to start the backup. Once complete, you’ll see a confirmation message.

Using a T-SQL query
- Open a new query window in SSMS, connected to your server.
- Run the following command, replacing the placeholders with your own details:
sql BACKUP DATABASE your_database_name TO DISK = 'C:\Backup\your_database_name.bak' WITH FORMAT;
- Wait for the query to complete, then check the specified folder to confirm the .bak file was created.
Once your backup is complete, store the .bak file somewhere secure, ideally separate from your live server, in case you need to restore it later.
If you have other questions or inquiries, please contact our Support Agents via live chat or email us at [email protected].