RemoveAllJobSchedules メソッド
ジョブからすべての共有スケジュールおよび非共有スケジュールを削除します。
名前空間: 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()
説明
正常に実行されると、Job オブジェクトの JobSchedules コレクション プロパティは空になります。参照先のジョブのスケジュールを変更するには、JobSchedule オブジェクトを作成して、Job オブジェクトの JobSchedules コレクション プロパティに追加します。
使用例
次のコード例では、"Test 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()