Application.ExistsOnDtsServer Method
指定したパッケージが Integration Services サービスに既に存在するかどうかを示す Boolean を返します。
名前空間: Microsoft.SqlServer.Dts.Runtime
アセンブリ: Microsoft.SqlServer.ManagedDTS (microsoft.sqlserver.manageddts.dll 内)
構文
'宣言
Public Function ExistsOnDtsServer ( _
sPackagePath As String, _
sServerName As String _
) As Boolean
public bool ExistsOnDtsServer (
string sPackagePath,
string sServerName
)
public:
bool ExistsOnDtsServer (
String^ sPackagePath,
String^ sServerName
)
public boolean ExistsOnDtsServer (
String sPackagePath,
String sServerName
)
public function ExistsOnDtsServer (
sPackagePath : String,
sServerName : String
) : boolean
パラメータ
- sPackagePath
パッケージの絶対パスです。
- sServerName
パッケージを検索するサーバーの名前です。
戻り値
sServerName で指定した名前のサーバーに sPackagePath で指定したパッケージが存在する場合は true、存在しない場合は false です。
使用例
次のコード例では、親フォルダ myFolder2 の下にあるファイル システムにパッケージが保存されます。次に、この例では、ExistsOnDtsServer メソッドを使用してクエリを実行することによって、パッケージが保存されたかどうかを確認しています。
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\90\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\90\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
サンプルの出力 :
Folder exists?True
Package exists?True
Folder exists?False
スレッド セーフ
この型の public static (Microsoft Visual Basic では共有 ) メンバは、スレッド セーフです。インスタンス メンバの場合は、スレッド セーフであるとは限りません。
プラットフォーム
開発プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
対象プラットフォーム
サポートされているプラットフォームの一覧については、「SQL Server 2005 のインストールに必要なハードウェアおよびソフトウェア」を参照してください。
参照
関連項目
Application Class
Application Members
Microsoft.SqlServer.Dts.Runtime Namespace