共用方式為


Job.OperatorToPage 屬性

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

命名空間:  Microsoft.SqlServer.Management.Smo.Agent
組件:  Microsoft.SqlServer.Smo (在 Microsoft.SqlServer.Smo.dll 中)

語法

'宣告
<SfcPropertyAttribute(SfcPropertyFlags.None Or SfcPropertyFlags.Expensive Or SfcPropertyFlags.Standalone)> _
Public Property OperatorToPage As String 
    Get 
    Set
'用途
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)

屬性值

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

範例

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"

請參閱

參考

Job 類別

Microsoft.SqlServer.Management.Smo.Agent 命名空間

其他資源

自動化管理工作 (SQL Server Agent)

sp_add_job (Transact-SQL)

使用 SQL Server Agent 排程自動管理工作