Condividi tramite


Proprietà Job.DeleteLevel

Gets or sets the completion action that determines whether to delete the job definition 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 DeleteLevel As CompletionAction 
    Get 
    Set
'Utilizzo
Dim instance As Job 
Dim value As CompletionAction 

value = instance.DeleteLevel

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

Valore proprietà

Tipo: Microsoft.SqlServer.Management.Smo.Agent.CompletionAction
A CompletionAction object value that specifies whether to delete the job definition.

Osservazioni

If directed, Microsoft SQL Server Agent can delete a job definition when execution succeeds or fails. Jobs can also be deleted regardless of success or failure of the job. By default, jobs are not deleted when execution finishes.

Esempi

The following code example creates a new job and displays the date on which it was last modified.

C#

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

Vedere anche

Riferimento

Job Classe

Spazio dei nomi Microsoft.SqlServer.Management.Smo.Agent

Altre risorse

Automatizzazione delle attività amministrative (SQL Server Agent)

sp_add_job (Transact-SQL)

Pianificazione delle attività amministrative automatiche in SQL Server Agent