FrequencyType Property

この機能は、将来のバージョンの Microsoft SQL Server では削除される予定です。 新しい開発作業では、この機能の使用を避け、現在この機能を使用しているアプリケーションは修正するようにしてください。

The FrequencyType property specifies the unit for the most significant portion of a Schedule object.

構文

object.FrequencyType [=value]

Parts

  • object
    An expression that evaluates to an object in the Applies To list.

  • value
    A long integer that specifies a schedule evaluation frequency as described in Settings.

Data Type

Long, enumerated

Modifiable

Read/write

Prototype (C/C++)

HRESULT GetFrequencyType(SQLDMO_FREQUENCY_TYPE* pRetVal);
HRESULT SetFrequencyType(SQLDMO_FREQUENCY_TYPE NewValue);

Settings

Constant

Value

Description

SQLDMOFreq_Autostart

64

The scheduled activity is started when the SQL Server Agent service starts.

SQLDMOFreq_Daily

4

The schedule is evaluated daily.

SQLDMOFreq_Monthly

16

The schedule is evaluated monthly.

SQLDMOFreq_MonthlyRelative

32

The schedule is evaluated relative to a part of a month, such as the second week.

SQLDMOFreq_OneTime

1

The scheduled activity occurs once, at a scheduled time or event.

SQLDMOFreq_OnIdle

128

The SQL Server Agent service schedules the activity for any time during which the processor is idle.

SQLDMOFreq_Unknown

0

Schedule frequency is not set, or frequency is not applicable.

SQLDMOFreq_Valid

255

A mask to test schedule frequency validity.

SQLDMOFreq_Weekly

8

The schedule is evaluated weekly.

説明

Setting FrequencyType may require setting other property values to schedule an activity accurately. For example, setting FrequencyType to SQLDMOFreq_Weekly without setting the FrequencyInterval property to specify days of the week results in an unscheduled activity.

For more information about setting frequency values, see FrequencyInterval Property, FrequencyRecurrenceFactor Property, FrequencySubDay Property, and FrequencySubDayInterval Property.

Applies To: