functions/Get-DbaSsisEnvironmentVariable.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 |
function Get-DbaSsisEnvironmentVariable { <# .SYNOPSIS This command gets specified SSIS Environment and all its variables .DESCRIPTION This command gets all variables from specified environment from SSIS Catalog. All sensitive values are decrypted. The function communicates directly with SSISDB database, "SQL Server Integration Services" service isn't queried there. Each parameter (besides SqlInstance and SqlCredential) acts as the filter to only include or exclude particular element .PARAMETER SqlInstance SQL Server name or SMO object representing the SQL Server to connect to. This can be a collection and receive pipeline input to allow the function to be executed against multiple SQL Server instances. .PARAMETER SqlCredential Login to the target instance using alternative credentials. Windows and SQL Authentication supported. Accepts credential objects (Get-Credential) .PARAMETER Environment The SSIS Environments names that we want to get variables from .PARAMETER EnvironmentExclude The SSIS Environments to exclude. Acts as a filter for environments, best used without 'Environment' parameter to get variables for all environments but excluded ones .PARAMETER Folder The Folders names that contain the environments .PARAMETER FolderExclude The Folders names to exclude. Acts as a filter for folders containing environments, best user without 'Folder' parameter to get variables for all folders but excluded ones .PARAMETER EnableException By default, when something goes wrong we try to catch it, interpret it and give you a friendly warning message. This avoids overwhelming you with "sea of red" exceptions, but is inconvenient because it basically disables advanced scripting. Using this switch turns this "nice by default" feature off and enables you to catch exceptions with your own try/catch. .NOTES Tags: SSIS, SSISDB, Variable Author: Bartosz Ratajczyk ( @b_ratajczyk ) dbatools PowerShell module (https://dbatools.io) Copyright (C) 2016 Chrissy LeMaire License: MIT https://opensource.org/licenses/MIT .LINK https://dbatools.io/Get-DbaSsisEnvironmentVariable .EXAMPLE Get-DbaSsisEnvironmentVariable -SqlInstance localhost -Environment DEV -Folder DWH_ETL Gets variables of 'DEV' environment located in 'DWH_ETL' folder on 'localhost' Server .EXAMPLE Get-DbaSsisEnvironmentVariable -SqlInstance localhost -Environment DEV -Folder DWH_ETL, DEV2, QA Gets variables of 'DEV' environment(s) located in folders 'DWH_ETL', 'DEV2' and 'QA' on 'localhost' server .EXAMPLE Get-DbaSsisEnvironmentVariable -SqlInstance localhost -Environment DEV -FolderExclude DWH_ETL, DEV2, QA Gets variables of 'DEV' environments located in folders other than 'DWH_ETL', 'DEV2' and 'QA' on 'localhost' server .EXAMPLE Get-DbaSsisEnvironmentVariable -SqlInstance localhost -Environment DEV, PROD -Folder DWH_ETL, DEV2, QA Gets variables of 'DEV' and 'PROD' environment(s) located in folders 'DWH_ETL', 'DEV2' and 'QA' on 'localhost' server .EXAMPLE Get-DbaSsisEnvironmentVariable -SqlInstance localhost -EnvironmentExclude DEV, PROD -Folder DWH_ETL, DEV2, QA Gets variables of environments other than 'DEV' and 'PROD' located in folders 'DWH_ETL', 'DEV2' and 'QA' on 'localhost' server .EXAMPLE Get-DbaSsisEnvironmentVariable -SqlInstance localhost -EnvironmentExclude DEV, PROD -FolderExclude DWH_ETL, DEV2, QA Gets variables of environments other than 'DEV' and 'PROD' located in folders other than 'DWH_ETL', 'DEV2' and 'QA' on 'localhost' server .EXAMPLE 'localhost' | Get-DbaSsisEnvironmentVariable -EnvironmentExclude DEV, PROD Gets all SSIS environments except 'DEV' and 'PROD' from 'localhost' server. The server name comes from pipeline .EXAMPLE 'SRV1', 'SRV3' | Get-DbaSsisEnvironmentVariable Gets all SSIS environments from 'SRV1' and 'SRV3' servers. The server's names come from pipeline .EXAMPLE 'SRV1', 'SRV2' | Get-DbaSsisEnvironmentVariable DEV | Out-GridView Gets all variables from 'DEV' Environment(s) on servers 'SRV1' and 'SRV2' and outputs it as the GridView. The server names come from the pipeline. .EXAMPLE 'localhost' | Get-DbaSsisEnvironmentVariable -EnvironmentExclude DEV, PROD | Select-Object -Property Name, Value | Where-Object {$_.Name -match '^a'} | Out-GridView Gets all variables from Environments other than 'DEV' and 'PROD' on 'localhost' server, selects Name and Value properties for variables that names start with letter 'a' and outputs it as the GridView #> [CmdletBinding()] Param ( [parameter(Mandatory, ValueFromPipeline)] [Alias('SqlServer', 'ServerInstance')] [DbaInstanceParameter[]]$SqlInstance, [Parameter(Mandatory = $false)] [PSCredential]$SqlCredential, [parameter(Mandatory = $false)] [object[]]$Environment, [parameter(Mandatory = $false)] [object[]]$EnvironmentExclude, [parameter(Mandatory = $false)] [object[]]$Folder, [parameter(Mandatory = $false)] [object[]]$FolderExclude, [Alias('Silent')] [switch]$EnableException ) process { foreach ($instance in $SqlInstance) { try { Write-Message -Message "Connecting to $instance" -Level Verbose $server = Connect-SqlInstance -SqlInstance $instance -MinimumVersion 11 } catch { Stop-Function -Message "Failure" -Category ConnectionError -ErrorRecord $_ -Target $instance -Continue } try { $ISNamespace = "Microsoft.SqlServer.Management.IntegrationServices" Write-Message -Message "Connecting to SSIS Catalog on $instance" -Level Verbose $SSIS = New-Object "$ISNamespace.IntegrationServices" $server } catch { Stop-Function -Message "Could not connect to SSIS Catalog on $instance or current SMO library does not support SSIS catalog" return } Write-Message -Message "Fetching SSIS Catalog and its folders" -Level Verbose $catalog = $SSIS.Catalogs | Where-Object { $_.Name -eq "SSISDB" } # get all folders names if none provided if ($null -eq $Folder) { $searchFolders = $catalog.Folders.Name } else { $searchFolders = $Folder } # filter unwanted folders if ($FolderExclude) { $searchFolders = $searchFolders | Where-Object { $_ -notin $FolderExclude } } if ($null -eq $searchFolders) { Write-Message -Message "Instance: $instance > -Folder and -FolderExclude filters return an empty collection. Skipping" -Level Warning } else { foreach ($f in $searchFolders) { # get all environments names if none provided if ($null -eq $Environment) { $searchEnvironments = $catalog.Folders.Environments.Name } else { $searchEnvironments = $Environment } #filter unwanted environments if ($EnvironmentExclude) { $searchEnvironments = $searchEnvironments | Where-Object { $_ -notin $EnvironmentExclude } } if ($null -eq $searchEnvironments) { Write-Message -Message "Instance: $instance / Folder: $f > -Environment and -EnvironmentExclude filters return an empty collection. Skipping." -Level Warning } else { $Environments = $catalog.Folders[$f].Environments | Where-Object { $_.Name -in $searchEnvironments } foreach ($e in $Environments) { #encryption handling $encKey = 'MS_Enckey_Env_' + $e.EnvironmentId $encCert = 'MS_Cert_Env_' + $e.EnvironmentId <# SMO does not return sensitive values (gets data from catalog.environment_variables) We have to manually query internal.environment_variables instead and use symmetric keys within T-SQL code #> $sql = @" OPEN SYMMETRIC KEY $encKey DECRYPTION BY CERTIFICATE $encCert; SELECT ev.variable_id, ev.name, ev.description, ev.type, ev.sensitive, value = ev.value, ev.sensitive_value, ev.base_data_type, decrypted = decrypted.value FROM internal.environment_variables ev CROSS APPLY ( SELECT value = CASE base_data_type WHEN 'nvarchar' THEN CONVERT(NVARCHAR(MAX), DECRYPTBYKEY(sensitive_value)) WHEN 'bit' THEN CONVERT(NVARCHAR(MAX), CONVERT(bit, DECRYPTBYKEY(sensitive_value))) WHEN 'datetime' THEN CONVERT(NVARCHAR(MAX), CONVERT(datetime2(0), DECRYPTBYKEY(sensitive_value))) WHEN 'single' THEN CONVERT(NVARCHAR(MAX), CONVERT(DECIMAL(38, 18), DECRYPTBYKEY(sensitive_value))) WHEN 'float' THEN CONVERT(NVARCHAR(MAX), CONVERT(DECIMAL(38, 18), DECRYPTBYKEY(sensitive_value))) WHEN 'decimal' THEN CONVERT(NVARCHAR(MAX), CONVERT(DECIMAL(38, 18), DECRYPTBYKEY(sensitive_value))) WHEN 'tinyint' THEN CONVERT(NVARCHAR(MAX), CONVERT(tinyint, DECRYPTBYKEY(sensitive_value))) WHEN 'smallint' THEN CONVERT(NVARCHAR(MAX), CONVERT(smallint, DECRYPTBYKEY(sensitive_value))) WHEN 'int' THEN CONVERT(NVARCHAR(MAX), CONVERT(INT, DECRYPTBYKEY(sensitive_value))) WHEN 'bigint' THEN CONVERT(NVARCHAR(MAX), CONVERT(bigint, DECRYPTBYKEY(sensitive_value))) END ) decrypted WHERE environment_id = $($e.EnvironmentId); CLOSE SYMMETRIC KEY $encKey; "@ $ssisVariables = $server.Query($sql, "SSISDB") foreach ($variable in $ssisVariables) { if ($variable.sensitive -eq $true) { $value = $variable.decrypted } else { $value = $variable.value } [PSCustomObject]@{ ComputerName = $server.NetName InstanceName = $server.ServiceName SqlInstance = $server.DomainInstanceName Folder = $f Environment = $e.Name Id = $variable.variable_id Name = $variable.Name Description = $variable.description Type = $variable.type IsSensitive = $variable.sensitive BaseDataType = $variable.base_data_type Value = $value } } } } } } } } } |