Compartilhar via


Método Job.EnumHistory

Enumerates a list of execution history associated with the referenced job.

Namespace:  Microsoft.SqlServer.Management.Smo.Agent
Assembly:  Microsoft.SqlServer.Smo (em Microsoft.SqlServer.Smo.dll)

Sintaxe

'Declaração
Public Function EnumHistory As DataTable
'Uso
Dim instance As Job 
Dim returnValue As DataTable 

returnValue = instance.EnumHistory()
public DataTable EnumHistory()
public:
DataTable^ EnumHistory()
member EnumHistory : unit -> DataTable
public function EnumHistory() : DataTable

Valor de retorno

Tipo: System.Data.DataTable
A DataTable object value that contains execution history data for the referenced job.

Exemplos

The following code example creates a job then displays its execution history.

C#

Server srv = new Server("(local)");
Job jb = srv.JobServer.Jobs["Test Job"];
DataTable jobHistory = jb.EnumHistory();

PowerShell

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

Consulte também

Referência

Job Classe

Sobrecarregado EnumHistory

Namespace Microsoft.SqlServer.Management.Smo.Agent

Outros recursos

Agendando tarefas administrativas automáticas no SQL Server Agent

Tarefas de administração automatizadas (SQL Server Agent)

sp_help_job (Transact-SQL)