Application.RemoveFromSqlServer Method
Removes a package from the specified instance of SQL Server.
Namespace: Microsoft.SqlServer.Dts.Runtime
Assembly: Microsoft.SqlServer.ManagedDTS (in Microsoft.SqlServer.ManagedDTS.dll)
public void RemoveFromSqlServer( string packagePath, string serverName, string serverUserName, string serverPassword )
Parameters
- packagePath
- Type: System.String
The name of the package to remove.
- serverName
- Type: System.String
The name of the instance of SQL Server.
- serverUserName
- Type: System.String
The user name to use when authenticating against the server.
- serverPassword
- Type: 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); }