Dataset system tables

When you query your database using database management system or SQL tools, you'll see geodatabase dataset tables. All the tables that compose a single dataset are stored in the schema of the database user who created the dataset.

The tables created for each type of dataset supported in an enterprise geodatabase are listed here so you can identify them. These tables should be altered using SQL.

Feature datasets

Feature datasets are objects that allow you to implement specific geodatabase dataset types, such as networks or topologies. A feature dataset is not a separate table in the database; it is a virtual collection of feature classes and controller (or extension) datasets that are grouped by a common ID. The ID is maintained in the GDB_ITEMS system table. Each feature class is identified as part of the feature dataset through the GDB_ITEMRELATIONSHIPS system table.

Network datasets

Network datasets are collections of feature classes that possess a connectivity relationship. Network datasets are created using three types of sources-edge feature sources, such as street centerlines; junction feature sources, such as point feature classes containing railroad crossings; and turn feature sources. They are used to model transportation.

You cannot create or update network datasets in ArcGIS Pro, but you can view them.

The following tables store network dataset information. The ID in the first six tables is the logical network identifier. The itemID in the last two tables is the object ID of the network in the GDB_ITEMS system table.

  • N_<ID>_DESC
  • N_<ID>_EDGEWEIGHT
  • N_<ID>_JUNCTIONWEIGHT
  • N_<ID>_PROPS
  • N_<ID>_TOPOLOGY
  • N_<ID>_TURNWEIGHT
  • ND_<ITEMID>_DIRTYAREAS
  • ND_<ITEMID>_DIRTYOBJECTS

Utility networks

A utility network is a set of interrelated tables in an enterprise geodatabase that provides a framework for modeling utility systems such as electric, gas, water, storm water, wastewater, and telecommunications.

You create utility networks in enterprise geodatabases using ArcGIS Pro and publish the networks to an ArcGIS GIS Server site federated with an ArcGIS Enterprise portal. The other members of your portal interact with the network through the portal item, not the layer in the geodatabase.

The following are the tables that compose a utility network. Some of the tables are generated the first time you perform an operation that requires the table's existence. The ID in the table names is the oid value from the GDB_ITEMS system table.

  • UN_<ID>_AGGREGATIONS
  • UN_<ID>_ASSOCIATIONS
  • UN_<ID>_ATTRIBUTEOVERRIDES
  • UN_<ID>_CONNECTIVITYOVERRIDES
  • UN_<ID>_CONTAINERS
  • UN_<ID>_DIAGRAMS
  • UN_<ID>_DIRTYAREAS
  • UN_<ID>_EDGEWEIGHTS
  • UN_<ID>_EDGES
  • UN_<ID>_EIDMAPPINGS
  • UN_<ID>_ELEMENTASSOCIATIONS
  • UN_<ID>_JUNCTIONWEIGHTS
  • UN_<ID>_JUNCTIONS
  • UN_<ID>_LINEERRORS
  • UN_<ID>_POINTERRORS
  • UN_<ID>_POLYGONERRORS
  • UN_<ID>_PROPS
  • UN_<ID>_RELATIONS
  • UN_<ID>_RULES
  • UN_<ID>_SUBNETWORKS
  • UN_<ID>_SYSTEMJUNCTIONS
  • UN_<ID>_TEMPLATES
  • UN_<ID>_TMPAGGREGATIONS
  • UN_<ID>_TMPCONTAINERS
  • UN_<ID>_TMPDIAGRAMS
  • UN_<ID>_TMPEDGES
  • UN_<ID>_TMPJUNCTIONS
  • UN_<ID>_TMPRELATIONS
  • UN_<ID>_TOPOLOGY
  • UN_<ID>_WEIGHTDEFS

Mosaic datasets

Multiple tables that store information about the imagery that is stored on disk are used to implement mosaic datasets. A set of properties and rules in the tables defines a real-time mosaic view of the imagery data.

There can be up to 12 tables in a mosaic dataset. Some of the tables are generated the first time you perform an operation that requires the table's existence. Referenced mosaic datasets only have two tables: the BND and LOG tables. The tables are as follows:

  • AMD_<NAME>_ANA
  • AMD_<NAME>_ART
  • AMD_<NAME>_BND
  • AMD_<NAME>_CAT
  • AMD_<NAME>_CCA
  • AMD_<NAME>_CHE
  • AMD_<NAME>_CSL
  • AMD_<NAME>_LOG
  • AMD_<NAME>_OVR
  • AMD_<NAME>_SML
  • AMD_<NAME>_STR
  • AMD_<NAME>_STS

Raster datasets

Raster data is spatial data represented in an array of equally sized cells arranged in rows and columns. Raster data is composed of one or more raster bands. When you create or import a raster dataset, a raster column is added to the base table when it is created in the database. Each cell of the raster column contains a reference to a raster stored in a separate raster table.

Each raster dataset contains a base table that stores attributes, a raster column, and the footprint (the area) of the raster.

Raster images and properties are stored in the following tables:

  • SDE_aux_<raster_column_ID>
  • SDE_blk_<raster_column_ID>
  • SDE_bnd_<raster_column_ID>
  • SDE_ras_<raster_column_ID>
  • SDE_VAT_<raster_column_ID>—Optional table to define attributes for raster cell values of a raster dataset.

Toolboxes

Toolboxes store geoprocessing tools and scripts. You can create a toolbox in your geodatabase to store system geoprocessing tools you use often and custom scripts that you create.

There will be one table per toolbox. The table name corresponds to the name of the toolbox.