Freigeben über


Job.RemoveSharedSchedule-Methode (Int32)

Removes the specified shared schedule from the job.

Namespace:  Microsoft.SqlServer.Management.Smo.Agent
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

'Declaration
Public Sub RemoveSharedSchedule ( _
    scheduleId As Integer _
)
'Usage
Dim instance As Job 
Dim scheduleId As Integer

instance.RemoveSharedSchedule(scheduleId)
public void RemoveSharedSchedule(
    int scheduleId
)
public:
void RemoveSharedSchedule(
    int scheduleId
)
member RemoveSharedSchedule : 
        scheduleId:int -> unit
public function RemoveSharedSchedule(
    scheduleId : int
)

Parameter

  • scheduleId
    Typ: System.Int32
    An Int32 value that specifies the ID value that uniquely identifies the shared schedule.

Beispiele

The following code example creates a job schedule, shares it between two jobs, then removes it from one of them.

C#

Server srv = new Server("(local)");
Job jb = new Job(srv.JobServer, "Test Job");
Job jb2 = new Job(srv.JobServer, "Second Test Job");
jb.Create();
jb2.Create();
JobSchedule jbsch = new JobSchedule(jb, "Test Job Schedule");
jbsch.Create();
jb2.AddSharedSchedule(jbsch.ID);
jb.RemoveSharedSchedule(jbsch.ID);

PowerShell

$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
$jb = new-object Microsoft.SqlServer.Management.Smo.Agent.Job($srv.JobServer, "Test Job")
$jb2 = new-object Microsoft.SqlServer.Management.Smo.Agent.Job($srv.JobServer, "Second Test Job")
$jb.Create()
$jb2.Create()
$jbsch = new-object Microsoft.SqlServer.Management.Smo.Agent.JobSchedule($jb, "Test Job Schedule")
$jbsch.Create()
$jb2.AddSharedSchedule($jbsch.ID)
$jb.RemoveSharedSchedule($jbsch.ID)

Siehe auch

Verweis

Job Klasse

RemoveSharedSchedule-Überladung

Microsoft.SqlServer.Management.Smo.Agent-Namespace

Andere Ressourcen

Planen von automatischen, administrativen Tasks im SQL Server-Agent

Automatisierte Administrationstasks (SQL Server-Agent)

sp_delete_schedule (Transact-SQL)