Application.SaveToSqlServerAs Method

Saves a package to an instance of SQL Server with a new name.

네임스페이스: Microsoft.SqlServer.Dts.Runtime
어셈블리: Microsoft.SqlServer.ManagedDTS (in microsoft.sqlserver.manageddts.dll)
구문

VisualBasicDeclaration

    
CSharp

    
ManagedCPlusPlus

    
JSharp

    
JScript

    

매개 변수

package

The package to save.

events

The IDTSEvents object.

packagePath

The path and new name to assign to the package. The parameter packagePath is in the format of \\folder\\packageName. If packagePath is specified without an existing folder, the package will be saved with this parameter as its new name.

serverName

The name of the instance of SQL Server.

serverUserName

The SQL Server login name if you use SQL Server Authentication to log into the server; otherwise, null if you use Windows Authentication.

serverPassword

The SQL Server login password if you use SQL Server Authentication to log into the server; otherwise, null if you use Windows Authentication.


The following code example saves the sample package named ExecuteProcess.dtsx to the msdb folder, with a new name of myNewPackage. To verify that the package was saved, run the following Transact-SQL query against the msdb database. The query returns all packages stored in the msdb system table.

select * from sysssispackages

Or, connect to the Integration Services service, expand Stored Packages, and then expand MSDB. The package with the name specified in packagePath will be listed.

CSharp
static void Main(string[] args)
        {
           // The variable pkg points to the location
           // of the ExecuteProcess package sample 
           // that is installed with the SSIS samples.
            string pkg = @"C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\ExecuteProcess Sample\ExecuteProcess\UsingExecuteProcess.dtsx";
            
            Application app = new Application();
            Package p = app.LoadPackage(pkg, null);

           // Save the package to the SQL Server msdb folder, which is
           // also the MSDB folder in the Integration Services service, or as a row in the
           //sysssispackages table.
            app.SaveToSqlServerAs(p, null, "myNewPackage", "yourserver", null, null);
        }
VisualBasic
Shared  Sub Main(ByVal args() As String)
           ' The variable pkg points to the location
           ' of the ExecuteProcess package sample 
           ' that is installed with the SSIS samples.
            Dim pkg As String =  "C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\ExecuteProcess Sample\ExecuteProcess\UsingExecuteProcess.dtsx" 
 
            Dim app As Application =  New Application() 
            Dim p As Package =  app.LoadPackage(pkg,Nothing) 
 
           ' Save the package to the SQL Server msdb folder, which is
           ' also the MSDB folder in the Integration Services service, or as a row in the
           'sysssispackages table.
            app.SaveToSqlServerAs(p, Nothing, "myNewPackage", "yourserver", Nothing, Nothing)
End Sub
스레드 보안

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
플랫폼

개발 플랫폼

지원되는 플랫폼 목록은 SQL Server 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.

Target Platforms

지원되는 플랫폼 목록은 SQL Server 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
참고 항목

태그 :


Page view tracker