functions/Set-DbaAgentJobStep.ps1
#ValidationTags#Messaging,FlowControl,Pipeline,CodeStyle# function Set-DbaAgentJobStep { <# .SYNOPSIS Set-DbaAgentJobStep updates a job step. .DESCRIPTION Set-DbaAgentJobStep updates a job step in the SQL Server Agent with parameters supplied. .PARAMETER SqlInstance SQL Server instance. You must have sysadmin access and server version must be SQL Server version 2000 or greater. .PARAMETER SqlCredential Allows you to login to servers using SQL Logins as opposed to Windows Auth/Integrated/Trusted. To use: $scred = Get-Credential, then pass $scred object to the -SqlCredential parameter. To connect as a different Windows user, run PowerShell as that user. .PARAMETER Job The name of the job. Can be null if the the job id is being used. .PARAMETER StepName The name of the step. .PARAMETER NewName The new name for the step in case it needs to be renamed. .PARAMETER SubSystem The subsystem used by the SQL Server Agent service to execute command. Allowed values 'ActiveScripting','AnalysisCommand','AnalysisQuery','CmdExec','Distribution','LogReader','Merge','PowerShell','QueueReader','Snapshot','Ssis','TransactSql' .PARAMETER Command The commands to be executed by SQLServerAgent service through subsystem. .PARAMETER CmdExecSuccessCode The value returned by a CmdExec subsystem command to indicate that command executed successfully. .PARAMETER OnSuccessAction The action to perform if the step succeeds. Allowed values "QuitWithSuccess" (default), "QuitWithFailure", "GoToNextStep", "GoToStep". The text value van either be lowercase, uppercase or something in between as long as the text is correct. .PARAMETER OnSuccessStepId The ID of the step in this job to execute if the step succeeds and OnSuccessAction is "GoToNextStep". .PARAMETER OnFailAction The action to perform if the step fails. Allowed values "QuitWithSuccess" (default), "QuitWithFailure", "GoToNextStep", "GoToStep". The text value van either be lowercase, uppercase or something in between as long as the text is correct. .PARAMETER OnFailStepId The ID of the step in this job to execute if the step fails and OnFailAction is "GoToNextStep". .PARAMETER Database The name of the database in which to execute a Transact-SQL step. The default is 'master'. .PARAMETER DatabaseUser The name of the user account to use when executing a Transact-SQL step. The default is 'sa'. .PARAMETER RetryAttempts The number of retry attempts to use if this step fails. The default is 0. .PARAMETER RetryInterval The amount of time in minutes between retry attempts. The default is 0. .PARAMETER OutputFileName The name of the file in which the output of this step is saved. .PARAMETER Flag Sets the flag(s) for the job step. Flag Description ---------------------------------------------------------------------------- AppendAllCmdExecOutputToJobHistory Job history, including command output, is appended to the job history file. AppendToJobHistory Job history is appended to the job history file. AppendToLogFile Job history is appended to the SQL Server log file. AppendToTableLog Job history is appended to a log table. LogToTableWithOverwrite Job history is written to a log table, overwriting previous contents. None Job history is not appended to a file. ProvideStopProcessEvent Job processing is stopped. .PARAMETER ProxyName The name of the proxy that the job step runs as. .PARAMETER WhatIf Shows what would happen if the command were to run. No actions are actually performed. .PARAMETER Confirm Prompts you for confirmation before executing any changing operations within the command. .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. .PARAMETER Force The force parameter will ignore some errors in the parameters and assume defaults. .NOTES Author: Sander Stad (@sqlstad, sqlstad.nl) Tags: Agent, Job, Job Step 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/Set-DbaAgentJobStep .EXAMPLE Set-DbaAgentJobStep -SqlInstance sql1 -Job Job1 -StepName Step1 -NewName Step2 Changes the name of the step in "Job1" with the name Step1 to Step2 .EXAMPLE Set-DbaAgentJobStep -SqlInstance sql1 -Job Job1 -StepName Step1 -Database msdb Changes the database of the step in "Job1" with the name Step1 to msdb .EXAMPLE Set-DbaAgentJobStep -SqlInstance sql1 -Job Job1, Job2 -StepName Step1 -Database msdb Changes job steps in multiple jobs with the name Step1 to msdb .EXAMPLE Set-DbaAgentJobStep -SqlInstance sql1, sql2, sql3 -Job Job1, Job2 -StepName Step1 -Database msdb Changes job steps in multiple jobs on multiple servers with the name Step1 to msdb .EXAMPLE Set-DbaAgentJobStep -SqlInstance sql1, sql2, sql3 -Job Job1 -StepName Step1 -Database msdb Changes the database of the step in "Job1" with the name Step1 to msdb for multiple servers .EXAMPLE sql1, sql2, sql3 | Set-DbaAgentJobStep -Job Job1 -StepName Step1 -Database msdb Changes the database of the step in "Job1" with the name Step1 to msdb for multiple servers using pipeline #> [CmdletBinding(SupportsShouldProcess = $true, ConfirmImpact = "Low")] param ( [parameter(Mandatory = $true, ValueFromPipeline = $true)] [Alias("ServerInstance", "SqlServer")] [DbaInstanceParameter[]]$SqlInstance, [Parameter(Mandatory = $false)] [PSCredential]$SqlCredential, [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [object[]]$Job, [Parameter(Mandatory = $true)] [ValidateNotNullOrEmpty()] [string]$StepName, [Parameter(Mandatory = $false)] [string]$NewName, [Parameter(Mandatory = $false)] [ValidateSet('ActiveScripting', 'AnalysisCommand', 'AnalysisQuery', 'CmdExec', 'Distribution', 'LogReader', 'Merge', 'PowerShell', 'QueueReader', 'Snapshot', 'Ssis', 'TransactSql')] [string]$Subsystem, [Parameter(Mandatory = $false)] [string]$Command, [Parameter(Mandatory = $false)] [int]$CmdExecSuccessCode, [Parameter(Mandatory = $false)] [ValidateSet('QuitWithSuccess', 'QuitWithFailure', 'GoToNextStep', 'GoToStep')] [string]$OnSuccessAction, [Parameter(Mandatory = $false)] [int]$OnSuccessStepId, [Parameter(Mandatory = $false)] [ValidateSet('QuitWithSuccess', 'QuitWithFailure', 'GoToNextStep', 'GoToStep')] [string]$OnFailAction, [Parameter(Mandatory = $false)] [int]$OnFailStepId, [Parameter(Mandatory = $false)] [string]$Database, [Parameter(Mandatory = $false)] [string]$DatabaseUser, [Parameter(Mandatory = $false)] [int]$RetryAttempts, [Parameter(Mandatory = $false)] [int]$RetryInterval, [Parameter(Mandatory = $false)] [string]$OutputFileName, [Parameter(Mandatory = $false)] [ValidateSet('AppendAllCmdExecOutputToJobHistory', 'AppendToJobHistory', 'AppendToLogFile', 'LogToTableWithOverwrite', 'None', 'ProvideStopProcessEvent')] [string[]]$Flag, [Parameter(Mandatory = $false)] [string]$ProxyName, [Parameter(Mandatory = $false)] [switch][Alias('Silent')]$EnableException, [Parameter(Mandatory = $false)] [switch]$Force ) begin { # Check the parameter on success step id if (($OnSuccessAction -ne 'GoToStep') -and ($OnSuccessStepId -ge 1)) { Stop-Function -Message "Parameter OnSuccessStepId can only be used with OnSuccessAction 'GoToStep'." -Target $SqlInstance return } # Check the parameter on success step id if (($OnFailAction -ne 'GoToStep') -and ($OnFailStepId -ge 1)) { Stop-Function -Message "Parameter OnFailStepId can only be used with OnFailAction 'GoToStep'." -Target $SqlInstance return } } process { if (Test-FunctionInterrupt) { return } foreach ($instance in $sqlinstance) { # Try connecting to the instance 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 } foreach ($j in $Job) { # Check if the job exists if ($Server.JobServer.Jobs.Name -notcontains $j) { Stop-Function -Message "Job $j doesn't exists on $instance" -Target $instance -Continue } else { # Check if the job step exists if ($Server.JobServer.Jobs[$j].JobSteps.Name -notcontains $StepName) { Stop-Function -Message "Step $StepName doesn't exists for job $j" -Target $instance -Continue } else { # Get the job step $JobStep = $Server.JobServer.Jobs[$j].JobSteps[$StepName] Write-Message -Message "Modifying job $j on $instance" -Level Verbose #region job step options # Setting the options for the job step if ($NewName) { Write-Message -Message "Setting job step name to $NewName" -Level Verbose $JobStep.Rename($NewName) } if ($Subsystem) { Write-Message -Message "Setting job step subsystem to $Subsystem" -Level Verbose $JobStep.Subsystem = $Subsystem } if ($Command) { Write-Message -Message "Setting job step command to $Command" -Level Verbose $JobStep.Command = $Command } if ($CmdExecSuccessCode) { Write-Message -Message "Setting job step command exec success code to $CmdExecSuccessCode" -Level Verbose $JobStep.CommandExecutionSuccessCode = $CmdExecSuccessCode } if ($OnSuccessAction) { Write-Message -Message "Setting job step success action to $OnSuccessAction" -Level Verbose $JobStep.OnSuccessAction = $OnSuccessAction } if ($OnSuccessStepId) { Write-Message -Message "Setting job step success step id to $OnSuccessStepId" -Level Verbose $JobStep.OnSuccessStep = $OnSuccessStepId } if ($OnFailAction) { Write-Message -Message "Setting job step fail action to $OnFailAction" -Level Verbose $JobStep.OnFailAction = $OnFailAction } if ($OnFailStepId) { Write-Message -Message "Setting job step fail step id to $OnFailStepId" -Level Verbose $JobStep.OnFailStep = $OnFailStepId } if ($Database) { # Check if the database is present on the server if ($Server.Databases.Name -contains $Database) { Write-Message -Message "Setting job step database name to $Database" -Level Verbose $JobStep.DatabaseName = $Database } else { Stop-Function -Message "The database is not present on instance $instance." -Target $instance -Continue } } if (($DatabaseUser) -and ($Database)) { # Check if the username is present in the database if ($Server.Databases[$Database].Users.Name -contains $DatabaseUser) { Write-Message -Message "Setting job step database username to $DatabaseUser" -Level Verbose $JobStep.DatabaseUserName = $DatabaseUser } else { Stop-Function -Message "The database user is not present in the database $Database on instance $instance." -Target $instance -Continue } } if ($RetryAttempts) { Write-Message -Message "Setting job step retry attempts to $RetryAttempts" -Level Verbose $JobStep.RetryAttempts = $RetryAttempts } if ($RetryInterval) { Write-Message -Message "Setting job step retry interval to $RetryInterval" -Level Verbose $JobStep.RetryInterval = $RetryInterval } if ($OutputFileName) { Write-Message -Message "Setting job step output file name to $OutputFileName" -Level Verbose $JobStep.OutputFileName = $OutputFileName } if ($ProxyName) { # Check if the proxy exists if ($Server.JobServer.ProxyAccounts.Name -contains $ProxyName) { Write-Message -Message "Setting job step proxy name to $ProxyName" -Level Verbose $JobStep.ProxyName = $ProxyName } else { Stop-Function -Message "The proxy name $ProxyName doesn't exist on instance $instance." -Target $instance -Continue } } if ($Flag.Count -ge 1) { Write-Message -Message "Setting job step flag(s) to $($Flags -join ',')" -Level Verbose $JobStep.JobStepFlags = $Flag } #region job step options # Execute if ($PSCmdlet.ShouldProcess($instance, "Changing the job step $StepName for job $j")) { try { Write-Message -Message "Changing the job step $StepName for job $j" -Level Verbose # Change the job step $JobStep.Alter() } catch { Stop-Function -Message "Something went wrong changing the job step" -ErrorRecord $_ -Target $instance -Continue } } } } } # foreach object job } # foreach object intance } # process end { if (Test-FunctionInterrupt) { return } Write-Message -Message "Finished changing job step(s)" -Level Verbose } } |