Propriedade do RDL Package.SaveCheckpoints
Gets or sets a value that indicates whether the package will use checkpoints during package execution.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (em Microsoft.SqlServer.ManagedDTS.dll)
Sintaxe
'Declaração
Public Property SaveCheckpoints As Boolean
Get
Set
'Uso
Dim instance As Package
Dim value As Boolean
value = instance.SaveCheckpoints
instance.SaveCheckpoints = value
public bool SaveCheckpoints { get; set; }
public:
property bool SaveCheckpoints {
bool get ();
void set (bool value);
}
member SaveCheckpoints : bool with get, set
function get SaveCheckpoints () : boolean
function set SaveCheckpoints (value : boolean)
Valor da propriedade
Tipo: System.Boolean
true if the package uses checkpoints during package execution; otherwise, false.
Comentários
For more information about the use of checkpoints in a package, see Reiniciar pacotes por meio de pontos de verificação.