共用方式為


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 Agent 排程自動管理工作

自動化管理工作 (SQL Server Agent)

sp_help_jobsteplog (Transact-SQL)