Lokasi ngalangkungan proxy:   [ UP ]  
[Ngawartoskeun bug]   [Panyetelan cookie]                
Skip to content

Commit b6c4e10

Browse files
Merge pull request #28821 from dzsquared/sqlpackage-162_1
rel notes
2 parents b5594d9 + bd579ff commit b6c4e10

2 files changed

Lines changed: 67 additions & 13 deletions

File tree

docs/tools/sqlpackage/release-notes-sqlpackage.md

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,60 @@ ms.custom: tools|sos
1616
This article lists the features and fixes delivered by the released versions of SqlPackage.
1717

1818

19+
## 162.1.167 SqlPackage
20+
21+
**Release date:** October 19, 2023
22+
23+
```bash
24+
dotnet tool install -g microsoft.sqlpackage --version 162.1.167
25+
```
26+
27+
|Platform|Download|
28+
|:---|:---|
29+
|Windows .NET 6 |[.zip file](https://go.microsoft.com/fwlink/?linkid=2249738)|
30+
|Windows|[MSI Installer](https://go.microsoft.com/fwlink/?linkid=2249478)|
31+
|macOS .NET 6 |[.zip file](https://go.microsoft.com/fwlink/?linkid=2249674)|
32+
|Linux .NET 6 |[.zip file](https://go.microsoft.com/fwlink/?linkid=2249739)|
33+
34+
35+
36+
### Features
37+
| Feature | Details |
38+
| :------ | :------ |
39+
| Platform | References [Microsoft.Data.SqlClient](https://www.nuget.org/packages/Microsoft.Data.SqlClient/5.1.1) v5.1.1.|
40+
| Azure Synapse Analytics | Adds support for `PARSER_VERSION` in `FORMAT_OPTIONS` for Azure Synapse Analytics serverless SQL pools. [Documentation](/sql/t-sql/statements/create-external-file-format-transact-sql#format_options) |
41+
| Azure Synapse Analytics | Adds support for mult-column distribution (MCD) in `CREATE VIEW` for Azure Synapse Analytics serverless SQL pools. [GitHub issue](https://github.com/microsoft/DacFx/issues/224) |
42+
| Azure Synapse Analytics | Adds support for /p:TableData property on extract operations to Parquet files, enabling the ability to specify which tables to export data for. [GitHub issue](https://github.com/microsoft/DacFx/issues/16) |
43+
| Fabric Data Warehouse | Adds support for extract and publish for Fabric Data Warehouse databases. Publish capabilities do not support changes that require existing tables to be altered. The target platform enum value is `SqlDwUnifiedDatabaseSchemaProvider` in SQL database projects. |
44+
| Parquet | Adds preview support for extract and publish with data stored in Parquet files in Azure Blob Storage with Azure SQL Managed Instance and SQL Server 2022. Azure SQL Database and SQL Server 2019 and earlier are not supported. Data must be in supported data types for [CETAS](/azure/synapse-analytics/sql/develop-tables-cetas#supported-data-types). Extract and publish with Parquet files offers performance improvements over import/export to bacpac files in many scenarios.|
45+
| Publish | Adds `/p:AllowTableRecreation` property to publish operation. The default (true) is consistent with previous behavior, where a table change may require that a table is recreated while the table data is preserved however the deployment may take a significant amount of time or change tracking data could be lost. Setting the property `/p:AllowTableRecreation` to false results in the deployment not starting if recreation is needed for any table. [GitHub issue](https://github.com/microsoft/DacFx/issues/28) |
46+
47+
### Fixes
48+
| Feature | Details |
49+
| :------ | :------ |
50+
| Application | Fixes an issue where the SqlPackage CLI would throw an exception when the output was redirected. [GitHub issue](https://github.com/microsoft/DacFx/issues/261) |
51+
| Azure Synapse Analytics | Fixes an issue where a publish operation fails to parse a statement containing the `filepath()` or `filename()` [functions](/azure/synapse-analytics/sql/query-specific-files). |
52+
| Import | AUTO_DROP option is excluded from statistics when importing a bacpac to a version of SQL Server that does not support AUTO_DROP. |
53+
| Import | Fixes an issue where imports of databases containing ALTER or CREATE of availability groups would fail to import. |
54+
| Export | Fixes an issue where dropped ledger columns were inclued in a bacpac export, resulting in an error message during import. |
55+
| Export | Fixes an issue where /p:CompressionOption was not honored when exporting to a bacpac file. |
56+
| Extract | Fixes an issue where /p:ExtractTarget options for non-dacpac options still required the target file to have a .dacpac extension. [GitHub issue](https://github.com/microsoft/DacFx/issues/128) |
57+
| Ledger | Fixes an issue where import or publish of a database containing a dropped ledger table fails due to attempting to create permissions for the dropped table. |
58+
| Ledger | Fixes an issue where import of a database containing a dropped ledger table fails due to attempting to import data to the dropped table. |
59+
| Polybase | Fixes an issue where Azure SQL Managed Instance databases with RDBMS external tables could not be exported or extracted. [GitHub issue](https://github.com/microsoft/DacFx/issues/199) |
60+
| Publish | DropObjectsNotInSource does not drop objects that are permissions or role memberships. Use DropPermissionsNotInSource or DropRoleMembersNotInSource to enable dropping permissions or role memberships. [GitHub issue](https://github.com/microsoft/DacFx/issues/339) |
61+
| Publish | Fixes an issue where the publish operation fails when the user connecting does not have access to `master` in Azure SQL Database. |
62+
| Publish | Fixes an issue where deployments that include interactions with column encryption would experience intermittent execution timeout errors. |
63+
| Publish | Fixes an issue where deploying a dacpac built with .NET/.NET Core would fail if RegisterDataTierApplication was set to true. [GitHub issue](https://github.com/microsoft/DacFx/issues/18) |
64+
| Publish | Fixes an issue where system versioned table is modified and a new schema is created results in the deployment failing. [GitHub issue](https://github.com/microsoft/DacFx/issues/309) |
65+
66+
67+
### Known Issues
68+
| Feature | Details | Workaround |
69+
| :------ | :------ |:------ |
70+
| Deployment | The Azure Synapse Analytics Workload Management feature (Workload Groups and Workload Classifiers) isn't yet supported. | N/A |
71+
| ScriptDOM | Parsing a very large file can result in a stack overflow. | None |
72+
1973
## 162.0.52 SqlPackage
2074

2175
**Release date:** May 11, 2023

docs/tools/sqlpackage/sqlpackage-download.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ ms.custom:
1717

1818
SqlPackage runs on Windows, macOS, and Linux, and is available to install through `dotnet tool` or as a standalone zip download.
1919

20-
- **Version number:** 162.0.52
21-
- **Build number:** 162.0.52
22-
- **Release date:** May 11, 2023
20+
- **Version number:** 162.1.167
21+
- **Build number:** 162.1.167
22+
- **Release date:** October 19, 2023
2323

2424
For details about the latest release, see the [release notes](release-notes-sqlpackage.md).
2525

@@ -58,10 +58,10 @@ To uninstall SqlPackage, run the following command:
5858

5959
|Platform|Download|
6060
|:---|:---|
61-
|[Windows .NET 6](#windows-net-6) |[.zip file](https://go.microsoft.com/fwlink/?linkid=2236505)|
62-
|[Windows](#windows-net-framework)|[MSI Installer](https://go.microsoft.com/fwlink/?linkid=2236347)|
63-
|[macOS .NET 6](#macos) |[.zip file](https://go.microsoft.com/fwlink/?linkid=2236426)|
64-
|[Linux .NET 6](#linux) |[.zip file](https://go.microsoft.com/fwlink/?linkid=2236425)|
61+
|Windows .NET 6 |[.zip file](https://go.microsoft.com/fwlink/?linkid=2249738)|
62+
|Windows|[MSI Installer](https://go.microsoft.com/fwlink/?linkid=2249478)|
63+
|macOS .NET 6 |[.zip file](https://go.microsoft.com/fwlink/?linkid=2249674)|
64+
|Linux .NET 6 |[.zip file](https://go.microsoft.com/fwlink/?linkid=2249739)|
6565

6666

6767
### Linux
@@ -168,7 +168,7 @@ Evergreen links are available for downloading the latest Sqlpackage versions:
168168

169169
## DacFx
170170

171-
SqlPackage is a command-line interface for the DacFx framework, exposing some of the public DacFx APIs. DacServices ([Microsoft.SqlServer.Dac](/dotnet/api/microsoft.sqlserver.dac.dacservices)) is a related mechanism for integrating database deployment into your application pipeline. The DacServices API is available in a package through NuGet, [Microsoft.SqlServer.DacFx](https://www.NuGet.org/packages/Microsoft.SqlServer.DacFx). The current DacFx version is 162.0.52.
171+
SqlPackage is a command-line interface for the DacFx framework, exposing some of the public DacFx APIs. DacServices ([Microsoft.SqlServer.Dac](/dotnet/api/microsoft.sqlserver.dac.dacservices)) is a related mechanism for integrating database deployment into your application pipeline. The DacServices API is available in a package through NuGet, [Microsoft.SqlServer.DacFx](https://www.NuGet.org/packages/Microsoft.SqlServer.DacFx). The current DacFx version is 162.1.167.1.
172172

173173
Adding the NuGet package to a .NET project is accomplished via the .NET CLI with this command:
174174

@@ -198,10 +198,10 @@ SqlPackage runs on Windows, macOS, and Linux and is built using .NET 6. The [.N
198198

199199
### macOS
200200

201+
- macOS 14 "Sonoma"
201202
- macOS 13 "Ventura"
202203
- macOS 12 "Monterey"
203204
- macOS 11 "Big Sur"
204-
- macOS 10.15 "Catalina"
205205

206206
### Linux (x64)
207207

@@ -215,16 +215,16 @@ SqlPackage runs on Windows, macOS, and Linux and is built using .NET 6. The [.N
215215
This release of SqlPackage can be installed in the following languages:
216216

217217
SqlPackage .NET 6 Windows:
218-
[Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2236505&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2236505&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2236505&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2236505&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2236505&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2236505&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2236505&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2236505&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2236505&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2236505&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2236505&clcid=0x40a)
218+
[Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2249738&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2249738&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2249738&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2249738&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2249738&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2249738&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2249738&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2249738&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2249738&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2249738&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2249738&clcid=0x40a)
219219

220220
SqlPackage .NET Framework Windows:
221-
[Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2236347&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2236347&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2236347&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2236347&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2236347&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2236347&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2236347&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2236347&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2236347&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2236347&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2236347&clcid=0x40a)
221+
[Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2249478&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2249478&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2249478&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2249478&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2249478&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2249478&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2249478&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2249478&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2249478&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2249478&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2249478&clcid=0x40a)
222222

223223
SqlPackage .NET 6 macOS:
224-
[Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2236426&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2236426&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2236426&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2236426&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2236426&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2236426&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2236426&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2236426&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2236426&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2236426&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2236426&clcid=0x40a)
224+
[Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2249674&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2249674&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2249674&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2249674&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2249674&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2249674&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2249674&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2249674&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2249674&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2249674&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2249674&clcid=0x40a)
225225

226226
SqlPackage .NET 6 Linux:
227-
[Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2236425&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2236425&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2236425&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2236425&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2236425&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2236425&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2236425&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2236425&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2236425&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2236425&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2236425&clcid=0x40a)
227+
[Chinese (Simplified)](https://go.microsoft.com/fwlink/?linkid=2249739&clcid=0x804) | [Chinese (Traditional)](https://go.microsoft.com/fwlink/?linkid=2249739&clcid=0x404) | [English (United States)](https://go.microsoft.com/fwlink/?linkid=2249739&clcid=0x409) | [French](https://go.microsoft.com/fwlink/?linkid=2249739&clcid=0x40c) | [German](https://go.microsoft.com/fwlink/?linkid=2249739&clcid=0x407) | [Italian](https://go.microsoft.com/fwlink/?linkid=2249739&clcid=0x410) | [Japanese](https://go.microsoft.com/fwlink/?linkid=2249739&clcid=0x411) | [Korean](https://go.microsoft.com/fwlink/?linkid=2249739&clcid=0x412) | [Portuguese (Brazil)](https://go.microsoft.com/fwlink/?linkid=2249739&clcid=0x416) | [Russian](https://go.microsoft.com/fwlink/?linkid=2249739&clcid=0x419) | [Spanish](https://go.microsoft.com/fwlink/?linkid=2249739&clcid=0x40a)
228228

229229

230230
## Next Steps

0 commit comments

Comments
 (0)