FrequencySubDayInterval 属性

Gets or sets the interval between scheduled jobs that run during the day.

命名空间:  Microsoft.SqlServer.Management.Smo.Agent
程序集:  Microsoft.SqlServer.Smo(在 Microsoft.SqlServer.Smo.dll 中)

语法

声明
<SfcPropertyAttribute> _
Public Property FrequencySubDayInterval As Integer
    Get
    Set
用法
Dim instance As JobSchedule
Dim value As Integer

value = instance.FrequencySubDayInterval

instance.FrequencySubDayInterval = value
[SfcPropertyAttribute]
public int FrequencySubDayInterval { get; set; }
[SfcPropertyAttribute]
public:
property int FrequencySubDayInterval {
    int get ();
    void set (int value);
}
[<SfcPropertyAttribute>]
member FrequencySubDayInterval : int with get, set
function get FrequencySubDayInterval () : int
function set FrequencySubDayInterval (value : int)

属性值

类型:System. . :: . .Int32
An integer value that specifies the interval between scheduled jobs that run during the day.

注释

The FrequencySubDayInterval property has meaning only when the FrequencyTypes property of the JobSchedule object is set to FrequencyType.Daily and the FrequencySubDayTypes property is set to FrequencySubDayType.Hour or FrequencySubDayType.Minute.

For example, to schedule an activity for daily occurrence, every 15 minutes, set FrequencyTypes to FrequencyType.Daily, set FrequencySubDayTypes to FrequencySubDayType.Minute, and set FrequencySubDayInterval to 15.