평가 및 의견을 보내려면 클릭하십시오.
MSDN
MSDN Library
SQL Server
SQL Server 2008
SQL Server 온라인 설명서
Integration Services
기술 참조
Integration Services Class Library
Microsoft.SqlServer.Dts.Runtime
Application Class
Application Methods
 SaveToSqlServerAs Method

  저대역폭 보기 설정
커뮤니티 콘텐츠
이 섹션의 내용
다음 제품들은 다른 버전에서 다루어 집니다.
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)
Visual Basic (Declaration)
Public Sub SaveToSqlServerAs ( _
    package As Package, _
    events As IDTSEvents, _
    packagePath As String, _
    serverName As String, _
    serverUserName As String, _
    serverPassword As String _
)
C#
public void SaveToSqlServerAs (
    Package package,
    IDTSEvents events,
    string packagePath,
    string serverName,
    string serverUserName,
    string serverPassword
)
C++
public:
void SaveToSqlServerAs (
    Package^ package, 
    IDTSEvents^ events, 
    String^ packagePath, 
    String^ serverName, 
    String^ serverUserName, 
    String^ serverPassword
)
J#
public void SaveToSqlServerAs (
    Package package, 
    IDTSEvents events, 
    String packagePath, 
    String serverName, 
    String serverUserName, 
    String serverPassword
)
JScript
public function SaveToSqlServerAs (
    package : Package, 
    events : IDTSEvents, 
    packagePath : String, 
    serverName : String, 
    serverUserName : String, 
    serverPassword : String
)

매개 변수

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.

C#
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);
        }
Visual Basic
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 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
커뮤니티 콘텐츠   커뮤니티 콘텐츠란?
새 콘텐츠 추가 RSS  주석
Processing
© 2009 Microsoft Corporation. All rights reserved. 사용약관  |  상표  |  개인정보보호
Page view tracker