Właściwość Package.CheckpointUsage
Pobiera lub ustawia wartość określającą lub po ponownym uruchomieniu pakiet.
Przestrzeń nazw: Microsoft.SqlServer.Dts.Runtime
Zestaw: Microsoft.SqlServer.ManagedDTS (w Microsoft.SqlServer.ManagedDTS.dll)
Składnia
'Deklaracja
Public Property CheckpointUsage As DTSCheckpointUsage
Get
Set
'Użycie
Dim instance As Package
Dim value As DTSCheckpointUsage
value = instance.CheckpointUsage
instance.CheckpointUsage = value
public DTSCheckpointUsage CheckpointUsage { get; set; }
public:
property DTSCheckpointUsage CheckpointUsage {
DTSCheckpointUsage get ();
void set (DTSCheckpointUsage value);
}
member CheckpointUsage : DTSCheckpointUsage with get, set
function get CheckpointUsage () : DTSCheckpointUsage
function set CheckpointUsage (value : DTSCheckpointUsage)
Wartość właściwości
Typ: Microsoft.SqlServer.Dts.Runtime.DTSCheckpointUsage
Wartość z DTSCheckpointUsage wyliczania.
Uwagi
Wartością domyślną tej właściwość jest Never, która wskazuje, że nie można ponownie uruchomić pakiet.Aby uzyskać więcej informacji dotyczących używania kontrolnych w pakiet, zobacz Ponowne uruchomienie nie powiodło pakietów za pomocą punktów kontrolnych.
Przykłady
Następujący kod ustawia przykład CheckpointUsage właściwość.
using System;
using System.Collections.Generic;
using System.Text;
using Microsoft.SqlServer.Dts.Runtime;
namespace Package_API
{
class Program
{
static void Main(string[] args)
{
Application app = new Application();
Package pkg = new Package();
pkg = app.LoadPackage(@"C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\CalculatedColumns Sample\CalculatedColumns\CalculatedColumns.dtsx", null);
// Set the CheckpointUsage to IfExistts to force package to retart if
// the file specified by the CheckpointFileName property is found.
pkg.CheckpointUsage = DTSCheckpointUsage.IfExists;
Console.WriteLine("Check for existing checkpoint file? {0}", pkg.CheckpointUsage);
}
}
}
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports Microsoft.SqlServer.Dts.Runtime
Namespace Package_API
Class Program
Shared Sub Main(ByVal args() As String)
Dim app As Application = New Application()
Dim pkg As Package = New Package()
pkg = app.LoadPackage("C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\CalculatedColumns Sample\CalculatedColumns\CalculatedColumns.dtsx", Nothing)
' Set the CheckpointUsage to IfExistts to force package to retart if
' the file specified by the CheckpointFileName property is found.
pkg.CheckpointUsage = DTSCheckpointUsage.IfExists
Console.WriteLine("Check for existing checkpoint file? {0}", pkg.CheckpointUsage)
End Sub
End Class
End Namespace
Przykładowe dane wyjściowe:
Check for existing checkpoint file? IfExists