Поделиться через


Метод Job.RemoveAllJobSchedules

Removes all shared and unshared schedules from the job.

Пространство имен:  Microsoft.SqlServer.Management.Smo.Agent
Сборка:  Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)

Синтаксис

'Декларация
Public Sub RemoveAllJobSchedules
'Применение
Dim instance As Job

instance.RemoveAllJobSchedules()
public void RemoveAllJobSchedules()
public:
void RemoveAllJobSchedules()
member RemoveAllJobSchedules : unit -> unit
public function RemoveAllJobSchedules()

Замечания

On successful execution, the JobSchedules collection property of the Job object is emptied. To reschedule the referenced job, create JobSchedule objects and add them to the JobSchedulescollection property of the Job object.

Примеры

The following code example deletes all schedules from the "Test Job" job.

C#

Server srv = new Server("(local)");
Job jb = srv.JobServer.Jobs["Test Job"];
jb.RemoveAllJobSchedules();

PowerShell

$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
$jb = $srv.JobServer.Jobs["Test Job"]
$jb.RemoveAllJobSchedules()

См. также

Справочник

Job Класс

Перегрузка RemoveAllJobSchedules

Пространство имен Microsoft.SqlServer.Management.Smo.Agent

Другие ресурсы

Планирование автоматических административных задач в агенте SQL Server

Задачи автоматизированного администрирования (агент SQL Server)

sp_delete_jobschedule (Transact-SQL)