DTSPackageType 枚举

定义

标识创建包的工具。

public enum class DTSPackageType
public enum DTSPackageType
type DTSPackageType = 
Public Enum DTSPackageType
继承
DTSPackageType

字段

Default 0

未定义。

DTSDesigner 2

指定包是在 2000 SQL Server设计器中创建的。

DTSDesigner100 5

指定包是在 SQL Server 2008 Integration Services (SSIS) 的 SSIS 设计器中创建的。

DTSWizard 1

指定包是使用 SQL Server 导入和导出向导创建的。

SQLDBMaint 6

指定 DBMaint 客户端创建了包。

SQLReplication 3

指定已生成包来支持可转换的订阅。

示例

下面的代码示例加载其中一个 Integration Services 包示例,并显示其包类型,这是此枚举中的值之一。

using System;  
using System.Collections.Generic;  
using System.Text;  
using Microsoft.SqlServer.Dts.Runtime;  

namespace Microsoft.SqlServer.SSIS.Samples  
{  
    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\SmoTablesDBCC\SmoTablesDBCC\SmoTablesDBCC.dtsx", null);  

            // Display the package type.  
            Console.WriteLine("The package type is: {0}", pkg.PackageType);  
        }  
    }  
}  
Imports System  
Imports System.Collections.Generic  
Imports System.Text  
Imports Microsoft.SqlServer.Dts.Runtime  

Namespace Microsoft.SqlServer.SSIS.Samples  
    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\SmoTablesDBCC\SmoTablesDBCC\SmoTablesDBCC.dtsx", Nothing)  

            ' Display the package type.  
            Console.WriteLine("The package type is: {0}", pkg.PackageType)  
        End Sub  
    End Class  
End Namespace  

示例输出:

包类型为:DTSDesigner100

适用于