DTSCheckpointUsage 열거형
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
패키지를 다시 시작하는지 여부 및 시점에 대해 설명하는 값을 지정합니다.
public enum class DTSCheckpointUsage
public enum DTSCheckpointUsage
type DTSCheckpointUsage =
Public Enum DTSCheckpointUsage
- 상속
-
DTSCheckpointUsage
필드
Always | 2 | 패키지를 항상 다시 시작하도록 지정합니다. |
IfExists | 1 | CheckpointFileName에서 지정한 파일을 찾은 경우 패키지를 다시 시작하도록 지정합니다. |
Never | 0 | 패키지를 다시 시작하지 않도록 지정합니다. 이것은 기본값입니다. |
예제
다음 코드 예제에서는 CheckpointUsage 속성입니다.
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
샘플 출력:
기존 검사점 파일을 확인하시겠습니까? IfExists