言語

Application.RemoveFromSqlServer(String, String, String, String) メソッド

定義

指定されたSQL Serverインスタンスからパッケージを削除します。

public:
 void RemoveFromSqlServer(System::String ^ packagePath, System::String ^ serverName, System::String ^ serverUserName, System::String ^ serverPassword);
public void RemoveFromSqlServer(string packagePath, string serverName, string serverUserName, string serverPassword);
member this.RemoveFromSqlServer : string * string * string * string -> unit
Public Sub RemoveFromSqlServer (packagePath As String, serverName As String, serverUserName As String, serverPassword As String)

パラメーター

packagePath
String

取り出すべき荷物の名前。

serverName
String

SQL Server のインスタンスの名前です。

serverUserName
String

サーバーに対して認証する際に使うユーザー名。

serverPassword
String

パスワードは serverUserName アカウントに関連付けられています。

以下のコード例は、以前に保存されていた「 myNewName 」という名前のパッケージを削除しています。

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  

適用対象