Package.SaveCheckpoints Property

 

Applies To: SQL Server 2016 Preview

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 (in Microsoft.SqlServer.ManagedDTS.dll)

Syntax

public bool SaveCheckpoints { get; set; }
public:
property bool SaveCheckpoints {
    bool get();
    void set(bool value);
}
member SaveCheckpoints : bool with get, set
Public Property SaveCheckpoints As Boolean

Property Value

Type: System.Boolean

true if the package uses checkpoints during package execution; otherwise, false.

Remarks

For more information about the use of checkpoints in a package, see Restart Packages by Using Checkpoints.

See Also

Package Class
Microsoft.SqlServer.Dts.Runtime Namespace

Return to top