Get Job Data Workspace (Workflow Manager)
サマリ
Gets the job data workspace connection as an SDE connection file. This output can be used to perform more analysis in a geoprocessing model.
使用法
-
The Input Job ID must be for a job that currently exists in the repository.
構文
GetJobDataWorkspace_wmx (Input_JobID, {Input_DatabasePath}, {Input_SDEFileLocation})
パラメータ | 説明 | データ タイプ |
Input_JobID |
The ID for the job's data workspace connection to be retrieved. | String |
Input_DatabasePath (オプション) |
The Workflow Manager database connection file that contains the job information. | File |
Input_SDEFileLocation (オプション) |
The job's data workspace connection file will be written to the specified folder. | Folder |
コードのサンプル
GetJobDataWorkspace example stand-alone Python script
# Import arcpy module
import arcpy
# Check out any necessary licenses
arcpy.CheckOutExtension("JTX")
# Script arguments
Input_JobID = arcpy.GetParameterAsText(0)
Input_SDEFileLocation = arcpy.GetParameterAsText(1)
Input_DatabasePath = arcpy.GetParameterAsText(2)
# Local variables:
Output_JobDataWorkspace = Input_JobID
# Process: Get Job Data Workspace
arcpy.GetJobDataWorkspace_WMX(Input_JobID, Input_DatabasePath, Input_SDEFileLocation)
環境
このツールはジオプロセシング環境を使用していません
関連トピック
ライセンス情報
ArcGIS for Desktop Basic: ×
ArcGIS for Desktop Standard: 次のものが必要 Workflow Manager
ArcGIS for Desktop Advanced: 次のものが必要 Workflow Manager
9/14/2013