Click here to Skip to main content
15,867,834 members
Articles / Database Development

Options for Database Backup and Restore - How to Export BACPAC using SSMS?

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
6 Apr 2021CPOL5 min read 10K   5   2
This article describes the options to restore and backup database in SQL Server and explains how to Export BACPAC from SQL Server Management Studio.

Background

Developers use one database to develop the solution and then need to create another environment such as Testing and Production. Once everything is ready in a development environment, we need to deploy it for a testing or staging environment. To deploy the application from one environment to another, we need to create a database or deploy a database too. We may need the same setup configuration saved in the database as well as sample test data and in some cases need the same data to troubleshoot issues. There can be another scenario where we need to debug and check the issues with production data. We cannot directly connect and use the production or Live database for troubleshooting and fixing the issues directly in the client environment. To overcome this situation, we need the same database with the same data. If we restore the same database with data troubleshooting and deployment in testing and staging will be reduced significantly. Additionally, there can be requirements for data migration such as from the Local / On-premises database to Azure. There are some ways to restore or create a new database with existing data in SQL Server. In this article, we will learn some techniques to restore the database using available options. This article will describe how to create a database in another environment including refreshing data with the help of the BACPAC file of the existing database.

Introduction

Many developers do not know that there are options for DACPAC and BACPAC in SQL Server Management Studio. This article describes what are extract and export options available in SQL Server and How to Export BACPAC files using SQL Server Management Studio. So, this writeup explains about Data-tier application with an example of the Export option for BACPAC. Database Create and Restore Options in SQL Server including Data.

  • Backup file restore
  • Generate script with data
  • Data-tier Application

Backup File Restore

In SQL Server, we can restore the database including data by creating a .bak file of the desired database and restore it in a new environment. However, when we create BACPAC and .bak files of the same database, the size of the BACPAC file becomes significantly smaller than the .bak file. As well as, time for creation and restore/import of file also takes comparatively less. Additionally, sometimes due to the heavy size of the large database, there can be file transfer problems for the .bak file and also SQL Server version compatibility issues.

Generate Schema with Data

There is another method to restore or create a database in which we can generate a script with data or without data and can run it to create a new database. Moreover, while generating script in SQL Server, we need to select the Advanced option to select schema and Data to create the new database with the latest data of the source database. Additionally, if we create a new database with it, it takes much time to execute the script and insert all the data. Sometimes, the data insert may throw an error. Apart from this, the size of the file becomes big.

Data-tier Application

There are two ways in the Data-tier application to restore the database with different file extensions: DACPAC and BACPAC. DACPAC (Data-Tier Application Package) is a logical database entity that defines database objects for example tables, views, users, and logins. It helps to create a single package file containing database objects for the developer and database administrators. BACPAC (Backup package) contains schema and data for SQL Server database. We can generate these files and deploy it in multiple environments. Additionally, we can use to migrate data from one environment to another for example on-premises to Azure SQL Database or online. If we need the only schema we can go with DACPAC. If we need schema with Data, then we can choose the BACPAC method.

Advantages of Data-tier Application

  • It has no version compatibility issue. It helps to migrate data from different sources to targets having different SQL versions. It outweighs the script based practices and .bak file because it can handle to restore or migrate from older version to newer version of SQL.
  • In upgrade, it warns if there might be any data loss and provides upgrade plan. Based on Plan, DBA or Developer can proceed further.
  • It compresses the data hence, the file size becomes smaller.

Steps to Create or Export BACPAC File

Step 1

Open SSMS and connect to your SQL Instances. Expands your databases under the SQL instances and right click on Data which you want to export for data. Then you will get option as shown in the below image:

Image 1

Here, in this stage, you can see three options:

  1. Extract Data-tier Application: Using this option, we can extract the database with schema only without any data and the file hence created is called as DACPAC package. If we need schema only, we can choose this option.
  2. Export Data-tier Application: Using this option, we can extract schema as well as data in the file which is called as BACPAC file. We will choose this option in demo example in the article.
  3. Upgrade Data-tier Application: We can upgrade existing database using this option.

As we are talking about BACPAC in this article, click on Export Data-tier Application. You will get below window, click on Next to proceed further.

Image 2

Step 2

Click on Browse and select location where you want to keep the file and give File Name. Then, click on Next as depicted below:

Image 3

Step 3

Summary window will come as shown below where you can see details of your Source and Target location. Click on Finish to proceed further.

Image 4

Step 4

It starts exporting the database schema, data, store procedure and view, etc. This may take few seconds to minutes. Wait for this process to complete.

Image 5

When the export process is completed, you can close the window and see your file. Now, your export is done, you can import this file to Azure SQL or another Server or any machine’s SQL Server according to your need.

Conclusion

This article has described the options to restore and create databases as well as data-tier application import/export options with an example of BACPAC. I hope it will help you to manage and create your database in new environment including schema and data either in Azure or local database server using SSMS. In the next article, we will learn how to restore or import the BACPAC file.

History

  • 5th April, 2021: Initial version

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
NewsMessage Closed Pin
6-Apr-21 5:56
Vriartuck Vriartuck6-Apr-21 5:56 
PraiseUseful Pin
Rijwan Ansari5-Apr-21 8:30
Rijwan Ansari5-Apr-21 8:30 
GeneralRe: Useful Pin
Satya Karki5-Apr-21 18:00
professionalSatya Karki5-Apr-21 18:00 
Thank you Rijwan!

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.