Feature datasets in a geodatabase in PostgreSQL

Feature datasets are objects that allow you to group together related feature classes so they can participate in specific functionality. You would use a feature dataset to group feature classes that have the following characteristics:

Use the following links to read about different components of feature datasets in PostgreSQL:

The following describes how a feature dataset would appear in the Catalog window, in the database management system (DBMS), and in an XML document.

Feature datasets in ArcGIS Desktop

In the Catalog tree, feature datasets are represented with the following icon:

Feature dataset icon

When the feature dataset is expanded in the Catalog tree, you can see all the feature classes and other data objects that are in it.

Expanded feature dataset in the Catalog tree

The name of a feature dataset in a geodatabase in PostgreSQL contains the database name, the dataset owner's name, and the name of the feature dataset itself. This can be seen in the preceding graphic.

Feature datasets in a PostgreSQL database

In the database, feature datasets are virtual collections of feature classes. They are grouped together by a common ID, which is maintained in the gdb_items system table.

For the water feature dataset example, the feature class, tanks, is identified as part of the water feature dataset through the gdb_itemrelationships table. The uuid of the feature dataset is the originid, and the uuid of the feature class is the destid.

The following shows the tanks feature class business table and the system tables that track the water feature dataset in PostgreSQL:

Tanks feature dataset tables in PostgreSQL

Dashed lines indicate implicit relationships between columns; solid lines indicate explicit relationships between columns.

Because feature datasets are virtual collections of objects, feature classes in feature datasets are just like stand-alone feature classes in that they have their own records in the tables associated with feature classes such as sde_layers, sde_table_registry, sde_geometry_columns, and sde_column_registry. Since feature classes associated with feature datasets are database objects in their own right, they cannot have the same name as other tables or stand-alone feature classes in the same schema in the database.

TipTip:

See Feature classes in a geodatabase in PostgreSQL for a diagram of feature class relationships in the geodatabase.

Topologies, geometric networks, network datasets, parcel fabrics, schematic datasets, and terrain datasets are additional database objects that can be part of a feature dataset. These objects use additional system tables, which are described in separate topics.

Feature datasets in an XML workspace document

Feature datasets are grouped under the DatasetDefinitions tag in an XML document and separated by a DataElement tag of type FeatureDataset. The XML document entry for the water dataset would look like the following:

<DatasetDefinitions xsi: type="esri:ArrayOfDataElement">
 <DataElement xsi:type="esri:DEFeatureDataset">
  <CatalogPath>/V=sde.DEFAULT/FD=spdata.gis.water</CatalogPath> 
  <Name>spdata.gis.water</Name> 
  <Children xsi:type="esri:ArrayOfDataElement">
    <DataElement xsi:type="esri:DEFeatureClass">
      <CatalogPath>/V=spdata.gis.water/RC=spdata.gis.Anno_19_72</CatalogPath> 
      <Name>spdata.gis.Anno_19_72</Name> 
      <DatasetType>esriDTFeatureClass</DatasetType> 
      <DSID>1</DSID> 
      <Versioned>false</Versioned> 
      <CanVersion>true</CanVersion> 
      <HasOID>false</HasOID> 
      <OIDFieldName/> 
    <Fields xsi:type="esri:Fields">
       <FieldArray xsi:type="esri:ArrayOfField">
    </Fields>

All other data elements

</DatasetDefinitions>
NoteNote:

Though the <Versioned> tag is set to false for the feature dataset, this does not reflect the versioned state of the feature classes in the feature dataset. To find this information, query each individual feature class.


8/19/2013