Metoda Job.AddSharedSchedule
Adds a shared schedule to the Microsoft SQL Server Agent job.
Przestrzeń nazw: Microsoft.SqlServer.Management.Smo.Agent
Zestaw: Microsoft.SqlServer.Smo (w Microsoft.SqlServer.Smo.dll)
Składnia
'Deklaracja
Public Sub AddSharedSchedule ( _
scheduleId As Integer _
)
'Użycie
Dim instance As Job
Dim scheduleId As Integer
instance.AddSharedSchedule(scheduleId)
public void AddSharedSchedule(
int scheduleId
)
public:
void AddSharedSchedule(
int scheduleId
)
member AddSharedSchedule :
scheduleId:int -> unit
public function AddSharedSchedule(
scheduleId : int
)
Parametry
- scheduleId
Typ: System.Int32
Int32 Wartość, która określa wartość Identyfikatora jednoznacznie identyfikująca udostępniony harmonogram.
Przykłady
Poniższy przykład kodu tworzy harmonogram zadanie i udostępnia go między dwoma zadaniami.
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);
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)