Поделиться через


Метод Job.EnumJobStepLogs (Int32)

Enumerates a list of job step log files for the job step with the specified ID value.

Пространство имен:  Microsoft.SqlServer.Management.Smo.Agent
Сборка:  Microsoft.SqlServer.Smo (в Microsoft.SqlServer.Smo.dll)

Синтаксис

'Декларация
Public Function EnumJobStepLogs ( _
    stepId As Integer _
) As DataTable
'Применение
Dim instance As Job 
Dim stepId As Integer 
Dim returnValue As DataTable 

returnValue = instance.EnumJobStepLogs(stepId)
public DataTable EnumJobStepLogs(
    int stepId
)
public:
DataTable^ EnumJobStepLogs(
    int stepId
)
member EnumJobStepLogs : 
        stepId:int -> DataTable
public function EnumJobStepLogs(
    stepId : int
) : DataTable

Параметры

Возвращаемое значение

Тип: System.Data.DataTable
A DataTable object value that contains an enumerated list of all the job step log files for the job step with the specified ID value.

Примеры

The following code example creates a job then displays the job step log files for the specified job step ID.

C#

Server srv = new Server("(local)");
Job jb = srv.JobServer.Jobs["Test Job"];
DataTable stepLogs = jb.EnumStepLogs(1);

PowerShell

$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
$jb = $srv.JobServer.Jobs["Test Job"]
$stepLogs = $jb.EnumStepLogs(1)

См. также

Справочник

Job Класс

Перегрузка EnumJobStepLogs

Пространство имен Microsoft.SqlServer.Management.Smo.Agent

Другие ресурсы

Планирование автоматических административных задач в агенте SQL Server

Задачи автоматизированного администрирования (агент SQL Server)

sp_help_jobsteplog (Transact-SQL)