Job Constructor (JobServer, String)
Initializes a new instance of the Job class on the specified instance of Microsoft SQL Server Agent and with the specified name.
Espacio de nombres: Microsoft.SqlServer.Management.Smo.Agent
Ensamblado: Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)
Sintaxis
'Declaración
Public Sub New ( _
jobServer As JobServer, _
name As String _
)
'Uso
Dim jobServer As JobServer
Dim name As String
Dim instance As New Job(jobServer, _
name)
public Job(
JobServer jobServer,
string name
)
public:
Job(
JobServer^ jobServer,
String^ name
)
new :
jobServer:JobServer *
name:string -> Job
public function Job(
jobServer : JobServer,
name : String
)
Parámetros
- jobServer
Tipo: Microsoft.SqlServer.Management.Smo.Agent.JobServer
A JobServer object value that specifies the instance of SQL Server Agent that is running on the instance of SQL Server.
- name
Tipo: System.String
A String value that specifies the name of the job.
Ejemplos
The following code example creates a new instance of the Job class running on the default local server with the name "Test Job".
C#
Server srv = new Server("(local)");
Job jb = new Job(srv.JobServer, "Test Job");
PowerShell
$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
$jb = new-object Microsoft.SqlServer.Management.Smo.Agent.Job($srv.JobServer, "Test Job")
Vea también
Referencia
Espacio de nombres Microsoft.SqlServer.Management.Smo.Agent
Otros recursos
Tareas administrativas automatizadas (Agente SQL Server)
Programar tareas administrativas automáticas en el Agente SQL Server