다음을 통해 공유


RetryInterval Property

Microsoft SQL Server의 이후 버전에서는 이 기능이 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 않도록 하고, 현재 이 기능을 사용하는 응용 프로그램은 수정하십시오.

The RetryInterval property specifies a number of minutes that elapse before SQL Server Agent attempts to execute a previously failing job step.

구문

object.RetryInterval [= value]

Parts

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

  • value
    A long integer that specifies a number of minutes

Data Type

Long

Modifiable

Read/write

Prototype (C/C++)

HRESULT GetRetryInterval(LPLONG pRetVal);
HRESULT SetRetryInterval(long NewValue);

주의

TheRetryInterval property is evaluated only for those job steps flagged for retry. Set the RetryAttempts property to force SQL Server Agent to attempt more than a single execution of a job step.

If the RetryInterval property is zero (default), SQL Server Agent immediately executes a job step an additional time if a step that has been flagged for retry fails completion.

Applies To: