functions/Copy-DbaResourceGovernor.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 |
function Copy-DbaResourceGovernor { <# .SYNOPSIS Migrates Resource Pools .DESCRIPTION By default, all non-system resource pools are migrated. If the pool already exists on the destination, it will be skipped unless -Force is used. The -ResourcePool parameter is auto-populated for command-line completion and can be used to copy only specific objects. .PARAMETER Source Source SQL Server. You must have sysadmin access and server version must be SQL Server version 2008 or higher. .PARAMETER SourceSqlCredential Allows you to login to servers using SQL Logins instead of Windows Authentication (AKA Integrated or Trusted). To use: $scred = Get-Credential, then pass $scred object to the -SourceSqlCredential parameter. Windows Authentication will be used if SourceSqlCredential is not specified. SQL Server does not accept Windows credentials being passed as credentials. To connect as a different Windows user, run PowerShell as that user. .PARAMETER Destination Destination SQL Server. You must have sysadmin access and the server must be SQL Server 2008 or higher. .PARAMETER DestinationSqlCredential Allows you to login to servers using SQL Logins instead of Windows Authentication (AKA Integrated or Trusted). To use: $dcred = Get-Credential, then pass this $dcred to the -DestinationSqlCredential parameter. Windows Authentication will be used if DestinationSqlCredential is not specified. SQL Server does not accept Windows credentials being passed as credentials. To connect as a different Windows user, run PowerShell as that user. .PARAMETER ResourcePool Specifies the resource pool(s) to process. Options for this list are auto-populated from the server. If unspecified, all resource pools will be processed. .PARAMETER ExcludeResourcePool Specifies the resource pool(s) to exclude. Options for this list are auto-populated from the server .PARAMETER WhatIf If this switch is enabled, no actions are performed but informational messages will be displayed that explain what would happen if the command were to run. .PARAMETER Confirm If this switch is enabled, you will be prompted for confirmation before executing any operations that change state. .PARAMETER Force If this switch is enabled, the policies will be dropped and recreated on Destination. .PARAMETER Silent If this switch is enabled, the internal messaging functions will be silenced. .NOTES Tags: Migration, ResourceGovernor Author: Chrissy LeMaire (@cl), netnerds.net Requires: sysadmin access on SQL Servers Website: https://dbatools.io Copyright: (C) Chrissy LeMaire, clemaire@gmail.com License: GNU GPL v3 https://opensource.org/licenses/GPL-3.0 .LINK https://dbatools.io/Copy-DbaResourceGovernor .EXAMPLE Copy-DbaResourceGovernor -Source sqlserver2014a -Destination sqlcluster Copies all extended event policies from sqlserver2014a to sqlcluster using Windows credentials to connect to the SQL Server instances.. .EXAMPLE Copy-DbaResourceGovernor -Source sqlserver2014a -Destination sqlcluster -SourceSqlCredential $cred Copies all extended event policies from sqlserver2014a to sqlcluster using SQL credentials to connect to sqlserver2014a and Windows credentials to connect to sqlcluster. .EXAMPLE Copy-DbaResourceGovernor -Source sqlserver2014a -Destination sqlcluster -WhatIf Shows what would happen if the command were executed. #> [CmdletBinding(DefaultParameterSetName = "Default", SupportsShouldProcess = $true)] param ( [parameter(Mandatory = $true)] [DbaInstanceParameter]$Source, [PSCredential] $SourceSqlCredential, [parameter(Mandatory = $true)] [DbaInstanceParameter]$Destination, [PSCredential] $DestinationSqlCredential, [object[]]$ResourcePool, [object[]]$ExcludeResourcePool, [switch]$Force, [switch]$Silent ) begin { $sourceServer = Connect-SqlInstance -SqlInstance $Source -SqlCredential $SourceSqlCredential $destServer = Connect-SqlInstance -SqlInstance $Destination -SqlCredential $DestinationSqlCredential $source = $sourceServer.DomainInstanceName $destination = $destServer.DomainInstanceName if ($sourceServer.VersionMajor -lt 10 -or $destServer.VersionMajor -lt 10) { Stop-Function -Message "Resource Governor is only supported in SQL Server 2008 and above. Quitting." return } } process { if (Test-FunctionInterrupt) { return } $copyResourceGovSetting = [pscustomobject]@{ SourceServer = $sourceServer.Name DestinationServer = $destServer.Name Type = "Resource Governor Settings" Name = $null Status = $null Notes = $null DateTime = [DbaDateTime](Get-Date) } if ($Pscmdlet.ShouldProcess($destination, "Updating Resource Governor settings")) { if ($destServer.Edition -notmatch 'Enterprise' -and $destServer.Edition -notmatch 'Datacenter' -and $destServer.Edition -notmatch 'Developer') { Write-Message -Level Warning -Message "The resource governor is not available in this edition of SQL Server. You can manipulate resource governor metadata but you will not be able to apply resource governor configuration. Only Enterprise edition of SQL Server supports resource governor." } else { try { $sql = $sourceServer.ResourceGovernor.Script() | Out-String Write-Message -Level Debug -Message $sql Write-Message -Level Verbose -Message "Updating Resource Governor settings." $destServer.Query($sql) $copyResourceGovSetting.Status = "Successful" $copyResourceGovSetting } catch { $copyResourceGovSetting.Status = "Failed" $copyResourceGovSetting.Notes = $_.Exception $copyResourceGovSetting Stop-Function -Message "Not able to update settings." -Target $destServer -ErrorRecord $_ } } } # Pools if ($ResourcePool) { $pools = $sourceServer.ResourceGovernor.ResourcePools | Where-Object Name -In $ResourcePool } elseif ($ExcludeResourcePool) { $pool = $sourceServer.ResourceGovernor.ResourcePools | Where-Object Name -NotIn $ExcludeResourcePool } else { $pools = $sourceServer.ResourceGovernor.ResourcePools | Where-Object { $_.Name -notin "internal", "default" } } Write-Message -Level Verbose -Message "Migrating pools." foreach ($pool in $pools) { $poolName = $pool.Name $copyResourceGovPool = [pscustomobject]@{ SourceServer = $sourceServer.Name DestinationServer = $destServer.Name Type = "Pool" Name = $poolName Status = $null Notes = $null DateTime = [DbaDateTime](Get-Date) } if ($destServer.ResourceGovernor.ResourcePools[$poolName] -ne $null) { if ($force -eq $false) { Write-Message -Level Warning -Message "Pool '$poolName' was skipped because it already exists on $destination. Use -Force to drop and recreate." $copyResourceGovPool.Status = "Skipped" $copyResourceGovPool.Notes = "Already exists on destination" $copyResourceGovPool continue } else { if ($Pscmdlet.ShouldProcess($destination, "Attempting to drop $poolName")) { Write-Message -Level Verbose -Message "Pool '$poolName' exists on $destination." Write-Message -Level Verbose -Message "Force specified. Dropping $poolName." try { $destPool = $destServer.ResourceGovernor.ResourcePools[$poolName] $workloadGroups = $destPool.WorkloadGroups foreach ($workloadGroup in $workloadGroups) { $workloadGroup.Drop() } $destPool.Drop() $destServer.ResourceGovernor.Alter() } catch { $copyResourceGovPool.Status = "Failed to drop from Destination" $copyResourceGovPool.Notes = $_.Exception $copyResourceGovPool Stop-Function -Message "Unable to drop: $_ Moving on." -Target $destPool -ErrorRecord $_ -Continue } } } } if ($Pscmdlet.ShouldProcess($destination, "Migrating pool $poolName")) { try { $sql = $pool.Script() | Out-String Write-Message -Level Debug -Message $sql Write-Message -Level Verbose -Message "Copying pool $poolName." $destServer.Query($sql) $copyResourceGovPool.Status = "Successful" $copyResourceGovPool $workloadGroups = $pool.WorkloadGroups foreach ($workloadGroup in $workloadGroups) { $workgroupName = $workloadGroup.Name $copyResourceGovWorkGroup = [pscustomobject]@{ SourceServer = $sourceServer.Name DestinationServer = $destServer.Name Type = "Pool Workgroup" Name = $workgroupName Status = $null Notes = $null DateTime = [DbaDateTime](Get-Date) } $sql = $workloadGroup.Script() | Out-String Write-Message -Level Debug -Message $sql Write-Message -Level Verbose -Message "Copying $workgroupName." $destServer.Query($sql) $copyResourceGovWorkGroup.Status = "Successful" $copyResourceGovWorkGroup } } catch { $copyResourceGovWorkGroup.Status = "Failed" $copyResourceGovWorkGroup.Notes = $_.Exception $copyResourceGovWorkGroup Stop-Function -Message "Unable to migrate pool." -Target $pool -ErrorRecord $_ } } } if ($Pscmdlet.ShouldProcess($destination, "Reconfiguring")) { if ($destServer.Edition -notmatch 'Enterprise' -and $destServer.Edition -notmatch 'Datacenter' -and $destServer.Edition -notmatch 'Developer') { Write-Message -Level Warning -Message "The resource governor is not available in this edition of SQL Server. You can manipulate resource governor metadata but you will not be able to apply resource governor configuration. Only Enterprise edition of SQL Server supports resource governor." } else { Write-Message -Level Verbose -Message "Reconfiguring Resource Governor." $sql = "ALTER RESOURCE GOVERNOR RECONFIGURE" $destServer.Query($sql) $copyResourceGovReconfig = [pscustomobject]@{ SourceServer = $sourceServer.Name DestinationServer = $destServer.Name Type = "Reconfigure Resource Governor" Name = $null Status = "Successful" Notes = $null DateTime = [DbaDateTime](Get-Date) } $copyResourceGovReconfig } } } end { Test-DbaDeprecation -DeprecatedOn "1.0.0" -Silent:$false -Alias Copy-SqlResourceGovernor } } |