Compartir a través de


Job.OperatorToPage Propiedad

Gets or sets the operator that receives a pager notification when the job finishes execution.

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

Sintaxis

'Declaración
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Expensive Or SfcPropertyFlags.Standalone)> _
Public Property OperatorToPage As String 
    Get 
    Set
'Uso
Dim instance As Job 
Dim value As String 

value = instance.OperatorToPage

instance.OperatorToPage = value
[SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Expensive|SfcPropertyFlags.Standalone)]
public string OperatorToPage { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::None|SfcPropertyFlags::Expensive|SfcPropertyFlags::Standalone)]
public:
property String^ OperatorToPage {
    String^ get ();
    void set (String^ value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.None|SfcPropertyFlags.Expensive|SfcPropertyFlags.Standalone)>]
member OperatorToPage : string with get, set
function get OperatorToPage () : String 
function set OperatorToPage (value : String)

Valor de la propiedad

Tipo: System.String
A String value that specifies the operator that receives a pager notification when the job finishes.

Ejemplos

The following code example creates a job and specifies an operator that receives a pager notification when the job is completed.

C#

Server srv = new Server("(local)");
Job jb = new Job(srv.JobServer, "Test Job");
jb.Create();
jb.OperatorToPage = "OperatorName";

PowerShell

$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
$jb = new-object Microsoft.SqlServer.Management.Smo.Agent.Job($srv.JobServer, "Test Job")
$jb.Create()
$jb.OperatorToPage = "OperatorName"

Vea también

Referencia

Job Clase

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

Otros recursos

Tareas administrativas automatizadas (Agente SQL Server)

sp_add_job (Transact-SQL)

Programar tareas administrativas automáticas en el Agente SQL Server