Proprietà Job.NetSendLevel
Gets or sets the completion action that determines whether to net-send a notification to an operator when the job finishes execution.
Spazio dei nomi Microsoft.SqlServer.Management.Smo.Agent
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Sintassi
'Dichiarazione
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public Property NetSendLevel As CompletionAction
Get
Set
'Utilizzo
Dim instance As Job
Dim value As CompletionAction
value = instance.NetSendLevel
instance.NetSendLevel = value
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public CompletionAction NetSendLevel { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property CompletionAction NetSendLevel {
CompletionAction get ();
void set (CompletionAction value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member NetSendLevel : CompletionAction with get, set
function get NetSendLevel () : CompletionAction
function set NetSendLevel (value : CompletionAction)
Valore proprietà
Tipo: Microsoft.SqlServer.Management.Smo.Agent.CompletionAction
A CompletionAction value that specifies whether to net-send a notification to an operator.
Osservazioni
If directed, Microsoft SQL Server Agent can net-send a notification when execution succeeds or fails. Net-send notifications can also be sent regardless of success or failure of the job. By default, net-send notifications are not sent when execution finishes.
Esempi
The following code example creates a job and specifies that a notification is always net-sent when the job has finished execution.
C#
Server srv = new Server("(local)");
Job jb = new Job(srv.JobServer, "Test Job");
jb.Create();
jb.NetSendLevel = CompletionAction.Always
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.NetSendlevel = [Microsoft.SqlServer.Management.Smo.Agent.CompletionAction]::Always
Vedere anche
Riferimento
Spazio dei nomi Microsoft.SqlServer.Management.Smo.Agent
Altre risorse
Automatizzazione delle attività amministrative (SQL Server Agent)
Pianificazione delle attività amministrative automatiche in SQL Server Agent