Application.RemoveFromDtsServer(String, String) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Supprime un package du serveur spécifié.
public:
void RemoveFromDtsServer(System::String ^ sPackagePath, System::String ^ sServerName);
public void RemoveFromDtsServer (string sPackagePath, string sServerName);
member this.RemoveFromDtsServer : string * string -> unit
Public Sub RemoveFromDtsServer (sPackagePath As String, sServerName As String)
Paramètres
- sPackagePath
- String
Chemin d'accès complet du package.
- sServerName
- String
Nom du serveur où se trouve le package.
Exemples
L’exemple de code suivant supprime un package nommé myp1Package
.
static void Main(string[] args)
{
Application app = new Application();
app.RemoveFromDtsServer(@"File System\myp1Package", "yourserver");
}
Shared Sub Main(ByVal args() As String)
Dim app As Application = New Application()
app.RemoveFromDtsServer("File System\myp1Package", "yourserver")
End Sub
Remarques
Pour vérifier que le package n’existe plus, vous pouvez ouvrir le service Integration Services, sélectionner le système de fichiers, puis cliquer sur Actualiser. Le package n’est plus répertorié.