Udostępnij przez


Metoda Application.ExistsOnDtsServer

Zwraca wartość logiczna , wskazuje, czy określony pakiet już istnieje na Integration Services usługa.

Przestrzeń nazw:  Microsoft.SqlServer.Dts.Runtime
Zestaw:  Microsoft.SqlServer.ManagedDTS (w Microsoft.SqlServer.ManagedDTS.dll)

Składnia

'Deklaracja
Public Function ExistsOnDtsServer ( _
    sPackagePath As String, _
    sServerName As String _
) As Boolean
'Użycie
Dim instance As Application
Dim sPackagePath As String
Dim sServerName As String
Dim returnValue As Boolean

returnValue = instance.ExistsOnDtsServer(sPackagePath, _
    sServerName)
public bool ExistsOnDtsServer(
    string sPackagePath,
    string sServerName
)
public:
bool ExistsOnDtsServer(
    String^ sPackagePath, 
    String^ sServerName
)
member ExistsOnDtsServer : 
        sPackagePath:string * 
        sServerName:string -> bool 
public function ExistsOnDtsServer(
    sPackagePath : String, 
    sServerName : String
) : boolean

Parametry

  • sPackagePath
    Typ: System.String
    W pełni kwalifikowana ścieżka pakiet.
  • sServerName
    Typ: System.String
    Nazwa serwera wyszukiwania pakiet.

Wartość zwracana

Typ: System.Boolean
TRUE , jeśli pakiet określony przez sPackagePath nie istnieje na serwerze o nazwie sServerName; w przeciwnym razie false.

Przykłady

Poniższy przykład kodu pokazuje pakiet są zapisywane w systemie plików w folderze nadrzędnym myFolder2.Przykład sprawdza następnie, jeśli pakiet został zapisany przez badanie przy użyciu ExistsOnDtsServer metoda.

static void Main(string[] args)
        {
            // The variable pkg points to the location
            // of the ExecuteProcess package sample 
            // that is installed with the SSIS samples.
            string pkg = @"C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\ExecuteProcess Sample\ExecuteProcess\UsingExecuteProcess.dtsx";
            
            Application app = new Application();
            Package p = app.LoadPackage(pkg, null);
            
            // Save the package under myFolder which is found under the 
            // File System folder on the DTS Service
            app.SaveToDtsServer(p, null, @"File System\myFolder2", "yourserver");

            // Verify that the package was saved by 
            // using ExistsOnDtsServer.
            Boolean packageExists = app.ExistsOnDtsServer(@"File System\myFolder", "yourserver");
            Console.WriteLine("Package exists? " + packageExists);
        }
Sub Main(ByVal args() As String)
            ' The variable pkg points to the location
            ' of the ExecuteProcess package sample 
            ' that is installed with the SSIS samples.
            Dim pkg As String =  "C:\Program Files\Microsoft SQL Server\100\Samples\Integration Services\Package Samples\ExecuteProcess Sample\ExecuteProcess\UsingExecuteProcess.dtsx" 
 
            Dim app As Application =  New Application() 
            Dim p As Package =  app.LoadPackage(pkg,Nothing) 
 
            ' Save the package under myFolder which is found under the 
            ' File System folder on the DTS Service
            app.SaveToDtsServer(p, Nothing, "File System\myFolder2", "yourserver")
 
            ' Verify that the package was saved by 
            ' using ExistsOnDtsServer.
            Dim packageExists As Boolean =  app.ExistsOnDtsServer("File System\myFolder", "yourserver") 
            Console.WriteLine("Package exists? " + packageExists)
End Sub

Przykładowe dane wyjściowe:

Folder exists? True

Package exists? True

Folder exists? False