Aracılığıyla paylaş


DTSCheckpointUsage Numaralandırması

Olmadığını açıklayan veya paket yeniden başlatıldığında, değerlerini belirtir.

Ad Alanı:  Microsoft.SqlServer.Dts.Runtime
Derleme:  Microsoft.SqlServer.ManagedDTS (Microsoft.SqlServer.ManagedDTS içinde.dll)

Sözdizimi

'Bildirim
Public Enumeration DTSCheckpointUsage
'Kullanım
Dim instance As DTSCheckpointUsage
public enum DTSCheckpointUsage
public enum class DTSCheckpointUsage
type DTSCheckpointUsage
public enum DTSCheckpointUsage

Üyeler

Üye adı Açıklama
Never Paket başlatmaz belirtir.Bu varsayılan değerdir.
IfExists Paket dosyası tarafından belirtilen, yeniden başlatacağını belirtir CheckpointFileName bulundu.
Always Paket her zaman yeniden başlatacağını belirtir.

Örnekler

Aşağıdaki kod örneği kümeleri CheckpointUsage özellik.

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 IfExists to force package to restart 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 IfExists to force package to restart 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

Örnek Çıktı:

Onay için Denetim noktası dosyası var mı?IfExists