Application.RemoveFromSqlServer 메서드

Removes a package from the specified instance of SQL Server.

네임스페이스:  Microsoft.SqlServer.Dts.Runtime
어셈블리:  Microsoft.SqlServer.ManagedDTS(Microsoft.SqlServer.ManagedDTS.dll)

구문

‘선언
Public Sub RemoveFromSqlServer ( _
    packagePath As String, _
    serverName As String, _
    serverUserName As String, _
    serverPassword As String _
)
‘사용 방법
Dim instance As Application 
Dim packagePath As String 
Dim serverName As String 
Dim serverUserName As String 
Dim serverPassword As String

instance.RemoveFromSqlServer(packagePath, _
    serverName, serverUserName, serverPassword)
public void RemoveFromSqlServer(
    string packagePath,
    string serverName,
    string serverUserName,
    string serverPassword
)
public:
void RemoveFromSqlServer(
    String^ packagePath, 
    String^ serverName, 
    String^ serverUserName, 
    String^ serverPassword
)
member RemoveFromSqlServer : 
        packagePath:string * 
        serverName:string * 
        serverUserName:string * 
        serverPassword:string -> unit
public function RemoveFromSqlServer(
    packagePath : String, 
    serverName : String, 
    serverUserName : String, 
    serverPassword : String
)

매개 변수

  • packagePath
    유형: System.String
    The name of the package to remove.
  • serverName
    유형: System.String
    The name of the instance of SQL Server.
  • serverUserName
    유형: System.String
    The user name to use when authenticating against the server.
  • serverPassword
    유형: System.String
    The password associated with the ServerUserName account.

The following code example removes a package named myNewName that was saved previously.

static void Main(string[] args)
{
    Application app = new Application();
    // The package was previously saved using this method call.
    //app.SaveToSqlServerAs(p1, null, "myNewName", "yourserver", null, null);

    // Remove the previously saved package.
    app.RemoveFromSqlServer("myNewName", "yourserver", null, null);
}
Shared  Sub Main(ByVal args() As String)
    Dim app As Application =  New Application() 
    ' The package was previously saved using this method call.
    'app.SaveToSqlServerAs(p1, null, "myNewName", "yourserver", null, null);
 
    ' Remove the previously saved package.
    app.RemoveFromSqlServer("myNewName", "yourserver", Nothing, Nothing)
End Sub

참고 항목

참조

Application 클래스

Microsoft.SqlServer.Dts.Runtime 네임스페이스