Summary
Defines which editing operations nonowners have when editing a mosaic dataset in an enterprise geodatabase.
This tool prevents schema-locking issues that can arise when a mosaic dataset is stored in an enterprise geodatabase. The owner of the geodatabase runs this tool to create any side tables and fields that may be needed by the user. The owner must also grant the proper permissions to allow users to insert, update, or delete records.
Usage
This tool is only needed when creating a mosaic dataset within an enterprise geodatabase and a nonowner will be editing the mosaic dataset.
Use this tool to set up a mosaic dataset that will be published as an image service allowing users to upload or edit the items. A user can only upload data if the raster type is allowed by the mosaic dataset.
If a nonowner attempts to perform an operation that is not allowed, the operation will fail.
The Raster Types specified by this tool control which rasters a nonowner can add using the Add Rasters To Mosaic Dataset tool. If the nonowner tries to add a Raster type that has not been specified by this tool, the Add Rasters To Mosaic Dataset tool will fail.
If you run this tool without choosing any raster types, only the additional mosaic dataset tables will be created. These tables include overview, seamline, color correction, stereo, cell size levels, status, error, and permissions.
Syntax
arcpy.management.AlterMosaicDatasetSchema(in_mosaic_dataset, {side_tables}, {raster_type_names}, {editor_tracking})
Parameter | Explanation | Data Type |
in_mosaic_dataset | The mosaic dataset on which to change permitted operations. | Mosaic Layer |
side_tables [operation,...] (Optional) | The operations permissible for this mosaic dataset.
| String |
raster_type_names [raster_type,...] (Optional) | Specify all of the raster types that nonowners can add to this mosaic dataset.
If you wish to use a custom raster type, enter the path of the custom raster type file. | String |
editor_tracking (Optional) | Editor tracking can help you maintain accountability and enforce quality-control standards.
If the VIEW keyword is used in the side_tables parameter, editor tracking will automatically be enabled. | Boolean |
Derived Output
Name | Explanation | Data Type |
out_mosaic_dataset | The updated mosaic dataset. | Mosaic Layer |
Code sample
This is a Python sample for the AlterMosaicDatasetSchema tool.
import arcpy
arcpy.AlterMosaicDatasetSchema_management(
"C:/folder/mySDEcon.sde/md_01",
"ANALYSIS;BOUNDARY;LEVELS;OVERVIEW;VIEW",
"QuickBird;IKONOS", "EDITOR_TRACKING")
This is a Python script sample for the AlterMosaicDatasetSchema tool.
#Alter Mosaic Dataset Schema mainly works on SDE mosaic datasets. The
#selected side tables of mosaic dataset will be created. If there are
#raster type settings, metadata fields will be create for that raster type.
import arcpy
arcpy.env.workspace = "C:/Workspace"
mosaicds = "sdeserver.sde/mosaicds"
ops = "ANALYSIS;BOUNDARY;LEVELS;LOG;OVERVIEW"
rastypes = "QuickBird;IKONOS;Match-AT"
arcpy.AlterMosaicDatasetSchema_management(mosaicds, ops, rastypes)
Environments
Licensing information
- Basic: No
- Standard: Yes
- Advanced: Yes