Partilhar via


Propriedade do RDL Job.PageLevel

Gets or sets the completion action that determines whether to send a pager notification to an operator when the job finishes execution.

Namespace:  Microsoft.SqlServer.Management.Smo.Agent
Assembly:  Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)

Sintaxe

'Declaração
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public Property PageLevel As CompletionAction 
    Get 
    Set
'Uso
Dim instance As Job 
Dim value As CompletionAction 

value = instance.PageLevel

instance.PageLevel = value
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public CompletionAction PageLevel { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property CompletionAction PageLevel {
    CompletionAction get ();
    void set (CompletionAction value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member PageLevel : CompletionAction with get, set
function get PageLevel () : CompletionAction 
function set PageLevel (value : CompletionAction)

Valor da propriedade

Tipo: Microsoft.SqlServer.Management.Smo.Agent.CompletionAction
A CompletionAction value that specifies whether to send a pager notification to an operator.

Comentários

If directed, Microsoft SQL Server Agent can send a page notification when execution succeeds or fails. Pager notifications can also be sent regardless of success or failure of the job. By default, pager notifications are not sent when execution finishes.

Exemplos

The following code example creates a job and specifies that a page notification is sent when the job is finished executing.

C#

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

Consulte também

Referência

Job Classe

Namespace Microsoft.SqlServer.Management.Smo.Agent

Outros recursos

Tarefas de administração automatizadas (SQL Server Agent)

sp_add_job (Transact-SQL)

Agendando tarefas administrativas automáticas no SQL Server Agent