サマリー
Creates a new production database within a geodatabase. A production database stores tables used by Esri Mapping and Charting Solutions. Esri Production Mapping, Esri Defense Mapping, and the Esri Aeronautical Solution store different data models in their production databases. These data models describe hard-copy maps or charts based on product specifications.
使用法
The Workspace for Production Database must be a geodatabase.
-
接続ファイル内のユーザー認証情報は、ワークスペース内にデータを作成する権限を持っている必要があります。Oracle ジオデータベースでは、スキーマの所有者のみがマスター データベースを作成できる必要があります。
ファイル ジオデータベースおよびエンタープライズ ジオデータベースのコンフィグレーション キーワードを使用できます。各ジオデータベースのタイプおよび構成は、さまざまなコンフィグレーション キーワードをサポートしています。ただし、パーソナル ジオデータベースはキーワードをサポートしていません。
構文
CreateProductionDatabase(production_database_workspace, {database_config_keyword}, {production_database_extension})
パラメーター | 説明 | データ タイプ |
production_database_workspace | マスター データベースが格納されるワークスペース。 | Workspace |
database_config_keyword (オプション) | データベース格納場所またはコンフィグレーション キーワード。デフォルト値は Defaults です。 | String |
production_database_extension (オプション) | Indicates an Esri Mapping and Charting Solutions data model to apply to a production database in the input workspace. If not set, a Production Mapping production database is created.
| String |
コードのサンプル
CreateProductionDatabase example (stand–alone script)
The following stand-alone script demonstrates how to use the CreateProductionDatabase tool.
# Name: CreateProductionDatabase_Example.py
# Description: Creates a new production database in a file geodatabase
# Requirements: Production Mapping extension
# import arcpy and checkout a Production Mapping license
import arcpy
arcpy.CheckOutExtension("foundation")
#Set local variables
production_database_workspace = "C:\\Data\\ProductionDatabase.gdb"
database_config_keyword = "DEFAULTS"
# create a production database
arcpy.CreateProductionDatabase_production(production_database_workspace, database_config_keyword)
print "Script completed successfully."
# Check in the extension
arcpy.CheckInExtension("foundation")
環境
ライセンス情報
- ArcGIS Desktop Basic: いいえ
- ArcGIS Desktop Standard: 次のものが必要 Production Mapping
- ArcGIS Desktop Advanced: 次のものが必要 Production Mapping