DTSCheckpointUsage Énumération

Définition

Spécifie des valeurs qui décrivent si un package est redémarré.

public enum class DTSCheckpointUsage
public enum DTSCheckpointUsage
type DTSCheckpointUsage = 
Public Enum DTSCheckpointUsage
Héritage
DTSCheckpointUsage

Champs

Always 2

Spécifie que le package redémarre toujours.

IfExists 1

Spécifie que le package redémarre si le fichier spécifié par l'objet CheckpointFileName est trouvé.

Never 0

Spécifie que le package ne redémarre jamais. Il s’agit de la valeur par défaut.

Exemples

L’exemple de code suivant définit la CheckpointUsage propriété.

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  

Exemple de sortie :

Recherchez le fichier de point de contrôle existant ? IfExists

S’applique à