Job.EnumJobStepLogs Method
Enumerates a list of job step log files for the referenced job.
Namespace: Microsoft.SqlServer.Management.Smo.Agent
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Function EnumJobStepLogs As DataTable
'Usage
Dim instance As Job
Dim returnValue As DataTable
returnValue = instance.EnumJobStepLogs()
public DataTable EnumJobStepLogs()
public:
DataTable^ EnumJobStepLogs()
member EnumJobStepLogs : unit -> DataTable
public function EnumJobStepLogs() : DataTable
Return Value
Type: System.Data.DataTable
A DataTable object value that contains an enumerated list of all the job step log files.
Examples
The following code example creates a job then displays the job step log files.
C#
Server srv = new Server("(local)");
Job jb = srv.JobServer.Jobs["Test Job"];
DataTable stepLogs = jb.EnumStepLogs();
PowerShell
$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
$jb = $srv.JobServer.Jobs["Test Job"]
$stepLogs = $jb.EnumStepLogs()