Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Enumerates a list of job step log files for the job step with the specified ID value.
Namespace: Microsoft.SqlServer.Management.Smo.Agent
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public Function EnumJobStepLogs ( _
stepId As Integer _
) As DataTable
'Usage
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
Parameters
- stepId
Type: System.Int32
A Int32 value that specifies the job step ID value.
Return Value
Type: 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.
Examples
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)
See Also
Reference
Microsoft.SqlServer.Management.Smo.Agent Namespace
Other Resources
Scheduling Automatic Administrative Tasks in SQL Server Agent