Résumé
Upgrades a production database schema.
A production database stores ArcGIS Defense Mapping, ArcGIS Production Mapping, ArcGIS Maritime, ArcGIS Bathymetry, or ArcGIS Aviation tables using the data model for the given extension. These data models describe hard-copy maps or charts based on product specifications.
Utilisation
The Workspace for Production Database parameter value must be a geodatabase that contains a production database. This tool upgrades the production database to the latest version.
Utilisez un chemin d'accès à un fichier de connexion si l'espace de travail de la base de données de produits fait référence à une géodatabase d'entreprise. Les informations d'identification de l'utilisateur dans le fichier de connexion doivent bénéficier des autorisations de création des données dans l'espace de travail.
Vous pouvez utiliser un mot-clé de configuration pour les géodatabases fichier et d'entreprise. Chaque type de géodatabase et configuration prend en charge différents mots-clés de configuration. Toutefois, les géodatabases personnelles ne prennent pas les mots-clés en charge.
Syntaxe
arcpy.production.UpgradeProductionDatabase(production_database_workspace, {database_config_keyword})
Paramètre | Explication | Type de données |
production_database_workspace | L'espace de travail qui va stocker la base de données de production. | Workspace |
database_config_keyword (Facultatif) | Stockage de la base de données ou mot-clé de configuration. Par défaut, il s'agit de Par défaut. | String |
Exemple de code
UpgradeProductionDatabase example (stand-alone script)
The following stand-alone script demonstrates how to use the UpgradeProductionDatabase function. The script upgrades a production database with a schema from a previous version.
# Name: UpgradeProductionDatabase_Example.py
# Description: Upgrades a production database in an existing file geodatababase to the current schema
# Requirements: Production Mapping extension
# import arcpy and checkout a Production Mapping license
import arcpy
arcpy.CheckOutExtension("foundation")
#Set local variables
productiondatabase_workspace = "C:\\Data\\ProductionDatabase.gdb"
database_config_keyword = "DEFAULTS"
# upgrades a production database
arcpy.UpgradeProductionDatabase_production(productiondatabase_workspace, database_config_keyword)
print "Script completed successfully."
# Check in the extension
arcpy.CheckInExtension("foundation")
Environnements
Informations de licence
- Basic: Non
- Standard: Requiert Production Mapping
- Advanced: Requiert Production Mapping