How to take Full Database Backup (MS SQL
Server)
This topic describes how to create a full database backup in
SQL Server 2017 using SQL Server Management Studio
Back up a database
- Open MS SQL server management studio, then try to connect SQL server on local or a remote location
- After connecting to the appropriate instance of the Microsoft SQL Server Database Engine, in Object Explorer, click the server name to expand the server tree.
- Expand Databases, and either select a user database or expand System Databases and select a system database.
- Right-click the database, point to Tasks, and then click Back Up. The Back Up Database dialog box appears.
- General box options opens, In the Database drop-down list, verify the database name. Optionally, you can select a different database from the list.
- The Recovery model text box is for reference only. You can perform a database backup for any recovery model (FULL, BULK_LOGGED, or SIMPLE).
- In the Backup type drop-down list, select Full. Note that after creating a full database backup, you can create a differential database backups.
- Optionally, you can select the Copy-only backup checkbox to create a copy-only backup. A copy-only backup is a SQL Server backup that is independent of the sequence of conventional SQL Server backups. A copy-only backup is not available for the Differential backup type.
- For Backup component, select the Database radio button.
- In the Destination section, use the Back up to drop-down list to select the backup destination. Click Add to add additional backup objects and/or destinations.
- You can select the disk destination, and give the path (local or UNC) and use .bak as extension of the file, then press OK to start taking backup.
Comments
Post a Comment