Job.OperatorToEmail 속성

Gets or sets the operator that receives notification by e-mail 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 OperatorToEmail As String 
    Get 
    Set
‘사용 방법
Dim instance As Job 
Dim value As String 

value = instance.OperatorToEmail

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

속성 값

유형: System.String
A String value that specifies the operator that receives e-mail notification when the job finishes.

The following code example creates a job and specifies an e-mail address that receives notification when the job is completed.

C#

Server srv = new Server("(local)");
Job jb = new Job(srv.JobServer, "Test Job");
jb.Create();
jb.OperatorToEmail = "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.EmailLevel =[Microsoft.SqlServer.Management.Smo.Agent.CompletionAction]::Always
$jb.OperatorToEmail = "OperatorName"

참고 항목

참조

Job 클래스

Microsoft.SqlServer.Management.Smo.Agent 네임스페이스

관련 자료

관리 태스크 자동화(SQL Server 에이전트)

sp_add_job(Transact-SQL)

SQL Server 에이전트에서 자동 관리 태스크 예약