Making configuration keywords available in ArcGIS |
|
Release 9.3 |
NOTE: Applies to geodatabases created with an ArcGIS Server Enterprise license only
ArcGIS users can specify configuration keywords when they create datasets. To make configuration keywords accessible to ArcGIS Desktop users, you must have a user interface (UI) storage parameter in the configuration keyword's parameter group. Any configuration keywords that do not have a UI storage parameter will not be available to the ArcGIS users. The UI storage parameters areUI_TEXT—General user interface storage parameter; to be used with any keyword, other than network or topology keywords, you want to make available to users UI_NETWORK_TEXT—User interface storage parameter for a parent network keywordUI_TOPOLOGY_TEXT—User interface storage parameter for a parent topology keywordUI_TERRAIN_TEXT—User interface storage parameter for a parent terrain keyword These parameters are present in most of the keyword parameter lists of the default dbtune.sde file. However, if you create your own keywords that you want to be available to ArcGIS users, you should add the appropriate UI storage parameter to the keyword's parameter list.NOTE: A UI storage parameter is not needed and should not be added to the DATA_DICTIONARY configuration keyword parameter list. The DATA_DICTIONARY configuration keyword is used to specify storage of the ArcSDE geodatabase system tables and cannot be used for datasets.
Some rules about adding user interface storage parameters##SDO_GEOMETRY
GEOMETRY_STORAGE "SDO_GEOMETRY"
ATTRIBUTE_BINARY "BLOB"
RASTER_STORAGE "SDO_GEORASTER"
SDO_COMMIT_INTERVAL 1000
UI_TEXT "User Interface text description for SDO_GEOMETRY"
UI_NETWORK_TEXT "User Interface network text description for
SDO_GEOMETRY keyword"
END
##NETWORK_DEFAULTS
ATTRIBUTE_BINARY "BLOB"
UI_TOPOLOGY_TEXT "User Interface topology default configuration"
UI_NETWORK_TEXT "User Interface network default configuration"
B_STORAGE "PCTFREE 0 INITRANS 4"
# TABLESPACE <Network default business table tablespace name>
Tips
|