Εκπαίδευση
Change Steps of a SQL Server Agent Master Job
Applies to:
SQL Server
Azure SQL Managed Instance
Σημαντικό
On Azure SQL Managed Instance, most, but not all SQL Server Agent features are currently supported. See Azure SQL Managed Instance T-SQL differences from SQL Server for details.
This topic describes how to make changes to the steps of a SQL Server Agent master job in SQL Server by using SQL Server Management Studio or Transact-SQL.
A SQL Server Agent master job cannot be targeted at both local and remote servers.
Unless you are a member of the sysadmin fixed server role, you can only modify jobs that you own. For detailed information, see Implement SQL Server Agent Security.
In Object Explorer, click the plus sign to expand the server that contains the job where you want to modify steps.
Click the plus sign to expand SQL Server Agent.
Click the plus sign to expand the Jobs folder.
Right-click the job where you want to modify steps and select Properties.
In the Job Properties -job_name dialog box, under Select a page, select Steps.
Click Edit to open the Job Step Properties -job_step_name dialog box. For more information on the available options in this dialog box, see Job Step Properties - New Job Step (General Page) and Job Step Properties - New Job Step (Advanced Page).
When finished, click OK.
In the Job Properties -job_name dialog box, click OK.
In Object Explorer, connect to an instance of Database Engine.
On the Standard bar, click New Query.
Copy and paste the following example into the query window and click Execute.
-- changes the number of retry attempts for the first step -- of the Weekly Sales Data Backup job. -- After running this example, the number of retry attempts is 10 USE msdb ; GO EXEC dbo.sp_update_jobstep @job_name = N'Weekly Sales Data Backup', @step_id = 1, @retry_attempts = 10 ; GO
For more information, see sp_update_jobstep (Transact-SQL).