JobHistoryFilter.MinimumRunDuration Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the job filter constraint that restricts the values returned by the JobServer object's EnumJobHistory method to jobs that have completed running in the minimum length of time specified.

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

Syntax

public int MinimumRunDuration { get; set; }
public:
property int MinimumRunDuration {
    int get();
    void set(int value);
}
member MinimumRunDuration : int with get, set
Public Property MinimumRunDuration As Integer

Property Value

Type: System.Int32

An Int32 value that specifies the minimum execution time in seconds.

Remarks

The job history filter can be used to restrict the list returned by the JobServer object's EnumJobHistory method to jobs.

Examples

Legacy Code Example

Scheduling Automatic Administrative Tasks in SQL Server Agent

See Also

JobHistoryFilter Class
Microsoft.SqlServer.Management.Smo.Agent Namespace
Automated Administration Tasks (SQL Server Agent)

Return to top