Compartir a través de


Job.Start Método (String)

Runs the referenced job starting at the specified job step.

Espacio de nombres:  Microsoft.SqlServer.Management.Smo.Agent
Ensamblado:  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Sintaxis

'Declaración
Public Sub Start ( _
    jobStepName As String _
)
'Uso
Dim instance As Job 
Dim jobStepName As String

instance.Start(jobStepName)
public void Start(
    string jobStepName
)
public:
void Start(
    String^ jobStepName
)
member Start : 
        jobStepName:string -> unit
public function Start(
    jobStepName : String
)

Parámetros

  • jobStepName
    Tipo: System.String
    A String value that specifies the job step to start execution.

Ejemplos

The following code example creates a job and starts it at the specified job step.

C#

Server srv = new Server("(local)");
Job jb = new Job(srv.JobServer, "Test Job");
jb.Create();
JobStep jbstp = new JobStep(jb, "Test Job Step");
jbstp.OnSuccessAction = StepCompletionAction.QuitWithSuccess;
jbstp.OnFailAction = StepCompletionAction.QuitWithFailure;
jbstp.Create();
jb.ApplyToTargetServer(srv.Name);
jb.IsEnabled = true;
jb.Start("Test Job Step");

PowerShell

$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
$jb = new-object Microsoft.SqlServer.Management.Smo.Agent.Job($srv.JobServer, "Testrrt Job")
$jb.Create()
$jbstp = new-object Microsoft.SqlServer.Management.Smo.Agent.JobStep($jb, "Test Job Step")
$jbstp.OnSuccessAction = [Microsoft.SqlServer.Management.Smo.Agent.StepCompletionAction]::QuitWithSuccess
$jbstp.OnFailAction = [Microsoft.SqlServer.Management.Smo.Agent.StepCompletionAction]::QuitWithFailure
$jbstp.Create()
$jb.ApplyToTargetServer($srv.Name)
$jb.IsEnabled = $TRUE
$jb.Start("Test Job Step")

Vea también

Referencia

Job Clase

Sobrecarga de Start

Espacio de nombres Microsoft.SqlServer.Management.Smo.Agent

Otros recursos

Programar tareas administrativas automáticas en el Agente SQL Server

Tareas administrativas automatizadas (Agente SQL Server)

sp_add_job (Transact-SQL)