Condividi tramite


RetryAttempts Property

Questa caratteristica verrà rimossa a partire da una delle prossime versioni di Microsoft SQL Server. Evitare di utilizzare questa caratteristica in un nuovo progetto di sviluppo e prevedere interventi di modifica nelle applicazioni in cui è attualmente implementata.

The RetryAttempts property specifies a number of times SQL Server Agent attempts to execute the referenced job step before reporting step failure.

Sintassi

object
.RetryAttempts [= value]

Parts

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

  • value
    A long integer

Data Type

Long

Modifiable

Read/write

Prototype (C/C++)

HRESULT GetRetryAttempts(LPLONG pRetVal);
HRESULT SetRetryAttempts(long NewValue);

Osservazioni

SQL Server Agent job steps are assigned simple logic determining job execution behavior on step success or failure.

If the job step completes successfully on any attempt numbered less than or equal to the value of the RetryAttemptsproperty, job execution branches to follow the on-success action for the step. If execution attempts exceed the value of the RetryAttemptsproperty, job execution branches to follow the on-failure action for the step.

If a job step fails and the step is flagged for retry, SQL Server Agent can pause between execution attempts. For more information, see RetryInterval Property.

Applies To: