Свойство Job.EventLogLevel
Gets or sets the completion action that determines whether to generate an operating system event log entry when the job finishes execution.
Пространство имен: Microsoft.SqlServer.Management.Smo.Agent
Сборка: Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)
Синтаксис
'Декларация
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public Property EventLogLevel As CompletionAction
Get
Set
'Применение
Dim instance As Job
Dim value As CompletionAction
value = instance.EventLogLevel
instance.EventLogLevel = value
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public CompletionAction EventLogLevel { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property CompletionAction EventLogLevel {
CompletionAction get ();
void set (CompletionAction value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member EventLogLevel : CompletionAction with get, set
function get EventLogLevel () : CompletionAction
function set EventLogLevel (value : CompletionAction)
Значение свойства
Тип: Microsoft.SqlServer.Management.Smo.Agent.CompletionAction
A CompletionAction value that specifies whether to generate an operating system event log entry.
Замечания
If directed, Microsoft SQL Server Agent can generate an event log entry when execution succeeds or fails. Event log entries can also be generated regardless of success or failure of the job. By default, event log entries are not generated when execution finishes.
Примеры
The following code example sets the job to generate an operating system event log entry when the job execution finishes.
C#
Server srv = new Server("(local)");
Job jb = new Job(srv.JobServer, "Test Job");
jb.EventLogLevel = 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.EventLogLevel = [Microsoft.SqlServer.Management.Smo.Agent.CompletionAction]::Always
См. также
Справочник
Пространство имен Microsoft.SqlServer.Management.Smo.Agent
Другие ресурсы
Задачи автоматизированного администрирования (агент SQL Server)
Планирование автоматических административных задач в агенте SQL Server