functions/Get-DbaAgentJobHistory.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 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 |
#ValidationTags#Messaging,FlowControl,Pipeline,CodeStyle# function Get-DbaAgentJobHistory { <# .SYNOPSIS Gets execution history of SQL Agent Job on instance(s) of SQL Server. .DESCRIPTION Get-DbaAgentJobHistory returns all information on the executions still available on each instance(s) of SQL Server submitted. The cleanup of SQL Agent history determines how many records are kept. https://msdn.microsoft.com/en-us/library/ms201680.aspx https://msdn.microsoft.com/en-us/library/microsoft.sqlserver.management.smo.agent.jobhistoryfilter(v=sql.120).aspx .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 Job The name of the job from which the history is wanted. If unspecified, all jobs will be processed. .PARAMETER ExcludeJob The job(s) to exclude - this list is auto-populated from the server .PARAMETER StartDate The DateTime starting from which the history is wanted. If unspecified, all available records will be processed. .PARAMETER EndDate The DateTime before which the history is wanted. If unspecified, all available records will be processed. .PARAMETER NoJobSteps Use this switch to discard all job steps, and return only the job totals .PARAMETER WithOutputFile Use this switch to retrieve the output file (only if you want step details). Bonus points, we handle the quirks of SQL Agent tokens to the best of our knowledge (https://technet.microsoft.com/it-it/library/ms175575(v=sql.110).aspx) .PARAMETER JobCollection An array of SMO jobs .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: Job, Agent Author: Klaas Vandenberghe ( @PowerDbaKlaas ) Editor: niphlod Website: https://dbatools.io Copyright: (C) Chrissy LeMaire, clemaire@gmail.com License: MIT https://opensource.org/licenses/MIT .LINK https://dbatools.io/Get-DbaAgentJobHistory .EXAMPLE Get-DbaAgentJobHistory -SqlInstance localhost Returns all SQL Agent Job execution results on the local default SQL Server instance. .EXAMPLE Get-DbaAgentJobHistory -SqlInstance localhost, sql2016 Returns all SQL Agent Job execution results for the local and sql2016 SQL Server instances. .EXAMPLE 'sql1','sql2\Inst2K17' | Get-DbaAgentJobHistory Returns all SQL Agent Job execution results for sql1 and sql2\Inst2K17. .EXAMPLE Get-DbaAgentJobHistory -SqlInstance sql2\Inst2K17 | select * Returns all properties for all SQl Agent Job execution results on sql2\Inst2K17. .EXAMPLE Get-DbaAgentJobHistory -SqlInstance sql2\Inst2K17 -Job 'Output File Cleanup' Returns all properties for all SQl Agent Job execution results of the 'Output File Cleanup' job on sql2\Inst2K17. .EXAMPLE Get-DbaAgentJobHistory -SqlInstance sql2\Inst2K17 -Job 'Output File Cleanup' -WithOutputFile Returns all properties for all SQl Agent Job execution results of the 'Output File Cleanup' job on sql2\Inst2K17, with additional properties that show the output filename path .EXAMPLE Get-DbaAgentJobHistory -SqlInstance sql2\Inst2K17 -NoJobSteps Returns the SQL Agent Job execution results for the whole jobs on sql2\Inst2K17, leaving out job step execution results. .EXAMPLE Get-DbaAgentJobHistory -SqlInstance sql2\Inst2K17 -StartDate '2017-05-22' -EndDate '2017-05-23 12:30:00' Returns the SQL Agent Job execution results between 2017/05/22 00:00:00 and 2017/05/23 12:30:00 on sql2\Inst2K17. .EXAMPLE Get-DbaAgentJob -SqlInstance sql2016 | Where Name -match backup | Get-DbaAgentJobHistory Gets all jobs with the name that match the regex pattern "backup" and then gets the job history from those. You can also use -Like *backup* in this example. #> [CmdletBinding(DefaultParameterSetName = "Default")] param ( [parameter(Mandatory, ValueFromPipeline, ParameterSetName = "Server")] [Alias("ServerInstance", "SqlServer")] [DbaInstanceParameter[]]$SqlInstance, [PSCredential] $SqlCredential, [object[]]$Job, [object[]]$ExcludeJob, [DateTime]$StartDate = "1900-01-01", [DateTime]$EndDate = $(Get-Date), [switch]$NoJobSteps, [switch]$WithOutputFile, [parameter(Mandatory, ValueFromPipeline, ParameterSetName = "Collection")] [Microsoft.SqlServer.Management.Smo.Agent.Job]$JobCollection, [Alias('Silent')] [switch]$EnableException ) begin { $filter = New-Object Microsoft.SqlServer.Management.Smo.Agent.JobHistoryFilter $filter.StartRunDate = $StartDate $filter.EndRunDate = $EndDate if ($NoJobSteps -and $WithOutputFile) { Stop-Function -Message "You can't use -NoJobSteps and -WithOutputFile together" } function Get-JobHistory { [CmdletBinding()] param ( $Server, $Job, [switch]$WithOutputFile ) $tokenrex = [regex]'\$\((?<method>[^()]+)\((?<tok>[^)]+)\)\)|\$\((?<tok>[^)]+)\)' $propmap = @{ 'INST' = $Server.ServiceName 'MACH' = $Server.NetName 'SQLDIR' = $Server.InstallDataDirectory 'SQLLOGDIR' = $Server.ErrorLogPath #'STEPCT' loop number ? 'SRVR' = $Server.DomainInstanceName # WMI( property ) impossible } $squote_rex = [regex]"(?<!')'(?!')" $dquote_rex = [regex]'(?<!")"(?!")' $rbrack_rex = [regex]'(?<!])](?!])' function Resolve-TokenEscape($method, $value) { if (!$method) { return $value } $value = switch ($method) { 'ESCAPE_SQUOTE' { $squote_rex.Replace($value, "''") } 'ESCAPE_DQUOTE' { $dquote_rex.Replace($value, '""') } 'ESCAPE_RBRACKET' { $rbrack_rex.Replace($value, ']]') } 'ESCAPE_NONE' { $value } default { $value } } return $value } #'STEPID' = stepid #'STRTTM' job begin time #'STRTDT' job begin date #'JOBID' = JobId function Resolve-JobToken($exec, $outfile, $outcome) { $n = $tokenrex.Matches($outfile) foreach ($x in $n) { $tok = $x.Groups['tok'].Value $EscMethod = $x.Groups['method'].Value if ($propmap.containskey($tok)) { $repl = Resolve-TokenEscape -method $EscMethod -value $propmap[$tok] $outfile = $outfile.Replace($x.Value, $repl) } elseif ($tok -eq 'STEPID') { $repl = Resolve-TokenEscape -method $EscMethod -value $exec.StepID $outfile = $outfile.Replace($x.Value, $repl) } elseif ($tok -eq 'JOBID') { # convert(binary(16), ?) $repl = @('0x') + @($exec.JobID.ToByteArray() | foreach { $_.ToString('X2') }) -join '' $repl = Resolve-TokenEscape -method $EscMethod -value $repl $outfile = $outfile.Replace($x.Value, $repl) } elseif ($tok -eq 'STRTDT') { $repl = Resolve-TokenEscape -method $EscMethod -value $outcome.RunDate.toString('yyyyMMdd') $outfile = $outfile.Replace($x.Value, $repl) } elseif ($tok -eq 'STRTTM') { $repl = Resolve-TokenEscape -method $EscMethod -value ([int]$outcome.RunDate.toString('HHmmss')).toString() $outfile = $outfile.Replace($x.Value, $repl) } elseif ($tok -eq 'DATE') { $repl = Resolve-TokenEscape -method $EscMethod -value $exec.RunDate.toString('yyyyMMdd') $outfile = $outfile.Replace($x.Value, $repl) } elseif ($tok -eq 'TIME') { $repl = Resolve-TokenEscape -method $EscMethod -value ([int]$exec.RunDate.toString('HHmmss')).toString() $outfile = $outfile.Replace($x.Value, $repl) } } return $outfile } try { Write-Message -Message "Attempting to get job history from $instance" -Level Verbose if ($Job) { foreach ($currentjob in $Job) { $filter.JobName = $currentjob $executions += $server.JobServer.EnumJobHistory($filter) } } else { $executions = $server.JobServer.EnumJobHistory($filter) } if ($NoJobSteps) { $executions = $executions | Where-Object { $_.StepID -eq 0 } } if ($WithOutputFile) { $outmap = @{} $outfiles = Get-DbaAgentJobOutputFile -SqlInstance $Server -SqlCredential $SqlCredential -Job $Job foreach ($out in $outfiles) { if (!$outmap.ContainsKey($out.Job)) { $outmap[$out.Job] = @{} } $outmap[$out.Job][$out.StepId] = $out.OutputFileName } } $outcome = [pscustomobject]@{} foreach ($execution in $executions) { $status = switch ($execution.RunStatus) { 0 { "Failed" } 1 { "Succeeded" } 2 { "Retry" } 3 { "Canceled" } } Add-Member -Force -InputObject $execution -MemberType NoteProperty -Name ComputerName -value $server.NetName Add-Member -Force -InputObject $execution -MemberType NoteProperty -Name InstanceName -value $server.ServiceName Add-Member -Force -InputObject $execution -MemberType NoteProperty -Name SqlInstance -value $server.DomainInstanceName $DurationInSeconds = ($execution.RunDuration % 100) + [int]( ($execution.RunDuration % 10000 ) / 100 ) * 60 + [int]( ($execution.RunDuration % 1000000 ) / 10000 ) * 60 * 60 Add-Member -Force -InputObject $execution -MemberType NoteProperty -Name StartDate -value ([dbadatetime]$execution.RunDate) Add-Member -Force -InputObject $execution -MemberType NoteProperty -Name EndDate -value ([dbadatetime]$execution.RunDate.AddSeconds($DurationInSeconds)) Add-Member -Force -InputObject $execution -MemberType NoteProperty -Name Duration -value ([prettytimespan](New-TimeSpan -Seconds $DurationInSeconds)) Add-Member -Force -InputObject $execution -MemberType NoteProperty -Name Status -value $status if ($WithOutputFile) { if ($execution.StepID -eq 0) { $outcome = $execution } try { $outname = $outmap[$execution.JobName][$execution.StepID] $outname = Resolve-JobToken -exec $execution -outcome $outcome -outfile $outname $outremote = Join-AdminUNC $Server.NetName $outname } catch { $outname = '' $outremote = '' } Add-Member -Force -InputObject $execution -MemberType NoteProperty -Name OutputFileName -value $outname Add-Member -Force -InputObject $execution -MemberType NoteProperty -Name RemoteOutputFileName -value $outremote Select-DefaultView -InputObject $execution -Property ComputerName, InstanceName, SqlInstance, 'JobName as Job', StepName, RunDate, StartDate, EndDate, Duration, Status, OperatorEmailed, Message, OutputFileName, RemoteOutputFileName } else { Select-DefaultView -InputObject $execution -Property ComputerName, InstanceName, SqlInstance, 'JobName as Job', StepName, RunDate, StartDate, EndDate, Duration, Status, OperatorEmailed, Message } } } catch { Stop-Function -Message "Could not get Agent Job History from $instance" -Target $instance -Continue } } } process { if (Test-FunctionInterrupt) { return } if ($JobCollection) { foreach ($currentjob in $JobCollection) { Get-JobHistory -Server $currentjob.Parent.Parent -Job $currentjob.Name -WithOutputFile:$WithOutputFile } } foreach ($instance in $SqlInstance) { Write-Message -Message "Attempting to connect to $instance" -Level Verbose try { $server = Connect-SqlInstance -SqlInstance $instance -SqlCredential $SqlCredential } catch { Stop-Function -Message "Failure" -Category ConnectionError -ErrorRecord $_ -Target $instance -Continue } if ($ExcludeJob) { $jobs = $server.JobServer.Jobs.Name | Where-Object { $_ -notin $ExcludeJob } foreach ($currentjob in $jobs) { Get-JobHistory -Server $server -Job $currentjob -WithOutputFile:$WithOutputFile } } else { Get-JobHistory -Server $server -Job $Job -WithOutputFile:$WithOutputFile } } } } |