Skip to content

Commit 0997e36

Browse files
committed
adding note about data not being encrypted in dacpac bacpac
1 parent 1bda406 commit 0997e36

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

docs/tools/sql-database-projects/concepts/data-tier-applications/overview.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ Tooling support for data-tier applications enables developers and database admin
6363

6464
### DACPAC and BACPAC packages
6565

66+
> [!IMPORTANT]
67+
> Protect your `.bacpac` and `.dacpac` files by securing them appropriately. The data contained in these files is compressed but not encrypted. `.bacpac` files contain the data from a database by default, and a `.dacpac` can contain data when the option is specified during extract.
68+
6669
The following tools support the `.dacpac` and `.bacpac` formats:
6770

6871
- [SqlPackage CLI](../../../sqlpackage/sqlpackage.md)

docs/tools/sqlpackage/sqlpackage.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ Database portability is the ability to move a database schema and data between d
2929

3030
- [Import](sqlpackage-import.md): Imports the schema and table data from a BACPAC file into a new user database.
3131

32+
> [!IMPORTANT]
33+
> Protect your `.bacpac` and `.dacpac` files by securing them appropriately. The data contained in these files is compressed but not encrypted. `.bacpac` files contain the data from a database by default, and a `.dacpac` can contain data when the option is specified during extract.
34+
3235
## Deployments
3336

3437
Database deployments are the process of updating a database schema to match a desired state, such as adding columns to a table or changing the contents of a stored procedure. SqlPackage supports database deployments through the [Publish](sqlpackage-publish.md) and [Extract](sqlpackage-extract.md) actions. The Publish action updates a database schema to match the contents of a source .dacpac file, while the Extract action creates a data-tier application (.dacpac) file containing the schema or schema and user data from a connected SQL database. SqlPackage enables deployments against both new or existing databases from the same artifact (.dacpac) by automatically creating a deployment plan that applies the necessary changes to the target database. The deployment plan can be reviewed before applying the changes to the target database with either the [Script](sqlpackage-script.md) or [DeployReport](sqlpackage-deploy-drift-report.md) actions.

0 commit comments

Comments
 (0)