You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|Platform|SqlPackage now collects usage data, including anonymous feature usage and diagnostic data. For more information, see [Usage data collection](sqlpackage.md#usage-data-collection).|
|Azure Synapse Analytics|Adds support for [DW_COMPATIBILITY_LEVEL](../../t-sql/statements/alter-database-scoped-configuration-transact-sql.md#dw_compatibility_level---auto--10--20--30--40--50--9000).|
37
+
|ScriptDOM|ScriptDOM is now available as a standalone package on [NuGet](https://www.nuget.org/packages/Microsoft.SqlServer.TransactSql.ScriptDom) and is open source on [GitHub](https://github.com/microsoft/SqlScriptDOM).|
38
+
|System dacpacs|The `master` and `msdb` system dacpacs are now available on [NuGet](https://www.nuget.org/packages/Microsoft.SqlServer.Dacpacs). More information on the system dacpacs and consuming dacpacs as a package reference is available in the [DacFx GitHub repository](https://github.com/microsoft/DacFx).|
39
+
40
+
### Fixes
41
+
| Feature | Details |
42
+
| :------ | :------ |
43
+
|Azure Synapse Analytics|Fixes an issue where the default command timeout was not set properly when connecting to Azure Synapse Analytics serverless SQL pools.|
44
+
|Azure Synapse Analytics|Fixes an issue where Azure Synapse Analytics serverless SQL pools would incorrectly determine the default data and log paths.|
45
+
|Azure Synapse Analytics|Fixes an issue where Azure Synapse Analytics serverless SQL pools would incorrectly determine the default login, user and schema.|
46
+
|Azure SQL Database|Fixes an issue where temporal history retention was not correctly recognized as not configured (null).|
47
+
|Deployment|Fixes an issue where the deployment plan fails to detect a dependency on a table/view in subqueries within FROM VALUES clause. [GitHub issue](https://github.com/microsoft/DacFx/issues/156)|
48
+
|Deployment|Fixes an issue where deployment would fail when the target database contains a rule bound to a column.|
49
+
|Deployment|Fixes an issue where deployment would fail when the target database contains a rule bound to a column with a user-defined type.|
50
+
|Deployment|Fixes an issue where the retention period on a temporal table would be reset to the default value when another change is made to the table.|
51
+
|Deployment|Fixes an issue where updates to a primary key is not included in the deployment when the table has compression options specified.|
52
+
|Deployment|Fixes an issue where a non-clustered index on a partitioned table is rebuilt even when no changes are made to the table. [GitHub issue](https://github.com/microsoft/DacFx/issues/202)|
53
+
|Deployment|Fixes an issue where ignorecolumnorder property is not honored by a history table when no changes are made to a system-versioned table except the columns are reordered.|
54
+
|Export|Fixes an issue where the diagnostic information provided during an export operation incorrectly reports the size of a table in KB instead of Bytes. [GitHub issue](https://github.com/microsoft/DacFx/issues/209)|
55
+
|Ledger|Fixes an issue where SqlPackage was not correctly identifying the error when the Ledger history table or view have an invalid two-part name.|
56
+
|Query Store|Fixes an issue where the `flush_interval_seconds`[Query Store option](../../relational-databases/system-catalog-views/sys-database-query-store-options-transact-sql.md) was not correctly validated with a minimum value of 60 seconds.|
57
+
|SQL Server 2022|Fixes an issue where the function `DATETRUNC` was not recognized as a built-in function. [Developer Community report](https://developercommunity.visualstudio.com/t/Visual-Studio-build-solution-not-recogni/10333180)|
58
+
|SQL Server 2022|Fixes an issue where the function `DATE_BUCKET` was not recognized as a built-in function.|
59
+
60
+
61
+
### Known Issues
62
+
| Feature | Details | Workaround |
63
+
| :------ | :------ |:------ |
64
+
| Deployment | The Azure Synapse Analytics Workload Management feature (Workload Groups and Workload Classifiers) isn't yet supported. | N/A |
65
+
| ScriptDOM | Parsing a very large file can result in a stack overflow. | None |
Copy file name to clipboardExpand all lines: docs/tools/sqlpackage/sqlpackage-download.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: "Download and Install SqlPackage for Windows, macOS, or Linux"
4
4
author: "dzsquared"
5
5
ms.author: "drskwier"
6
6
ms.reviewer: "maghan"
7
-
ms.date: 2/13/2023
7
+
ms.date: 5/10/2023
8
8
ms.service: sql
9
9
ms.subservice: tools-other
10
10
ms.topic: conceptual
@@ -17,14 +17,14 @@ ms.custom:
17
17
18
18
SqlPackage runs on Windows, macOS, and Linux, and is available to install through `dotnet tool` or as a standalone zip download.
19
19
20
-
-**Version number:**161.8089.0
21
-
-**Build number:**16.1.8089.0
22
-
-**Release date:**February 13, 2023
20
+
-**Version number:**162.0.xxxx.0
21
+
-**Build number:**162.0.xxxx.0
22
+
-**Release date:**May 10, 2023
23
23
24
24
For details about the latest release, see the [release notes](release-notes-sqlpackage.md).
25
25
26
26
> [!NOTE]
27
-
> SqlPackage version numbering has been adjusted to better reflect the DacFx build number it is associated with. Previously, SqlPackage had a distinct version number (19) and build number (160.x). Beginning with version 161, the version number of SqlPackage will match the DacFx version number it is associated with (eg 161.8089.0).
27
+
> SqlPackage version numbering has been adjusted to better reflect the DacFx build number it is associated with. Previously, SqlPackage had a distinct version number (19) and build number (160.x). Beginning with version 161, the version number of SqlPackage will match the DacFx version number it is associated with (eg 162.0.xxxx.0).
28
28
29
29
## Installation, cross-platform
30
30
@@ -168,7 +168,7 @@ Evergreen links are available for downloading the latest Sqlpackage versions:
168
168
169
169
## DacFx
170
170
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 161.8089.0.
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.xxxx.0.
172
172
173
173
Adding the NuGet package to a .NET project is accomplished via the .NET CLI with this command:
0 commit comments