Application.RemoveFromSqlServer メソッド
指定した 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
削除するパッケージの名前です。
- serverName
型: System.String
SQL Server のインスタンスの名前です。
- serverUserName
型: System.String
サーバーに対する認証を行うときに使用するユーザー名です。
- serverPassword
型: System.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