File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77
88### Added
99
10+ - ` Install-SqlDscServer `
11+ - Added parameter ` AllowDqRemoval ` to the ` Upgrade ` parameter set
12+ ([ issue #2155 ] ( https://github.com/dsccommunity/SqlServerDsc/issues/2155 ) ).
1013- ` Test-SqlDscIsSupportedFeature `
1114 - Added DQ, DQC, and MDS features as discontinued starting with SQL Server 2025
1215 (17.x) and later versions ([ issue #2380 ] ( https://github.com/dsccommunity/SqlServerDsc/issues/2380 ) ).
Original file line number Diff line number Diff line change 276276 . PARAMETER AllowUpgradeForSSRSSharePointMode
277277 See the notes section for more information.
278278
279+ . PARAMETER AllowDqRemoval
280+ Specifies whether to allow removal of Data Quality (DQ) Services during
281+ upgrade to SQL Server 2025 (17.x) and later versions.
282+
279283 . PARAMETER NpEnabled
280284 See the notes section for more information.
281285
@@ -994,6 +998,10 @@ function Install-SqlDscServer
994998 [System.Management.Automation.SwitchParameter ]
995999 $AllowUpgradeForSSRSSharePointMode ,
9961000
1001+ [Parameter (ParameterSetName = ' Upgrade' )]
1002+ [System.Management.Automation.SwitchParameter ]
1003+ $AllowDqRemoval ,
1004+
9971005 [Parameter (ParameterSetName = ' Install' )]
9981006 [Parameter (ParameterSetName = ' InstallRole' )]
9991007 [System.Management.Automation.SwitchParameter ]
You can’t perform that action at this time.
0 commit comments