Field name |
Field type |
Description |
id |
integer |
Unique identifier of the schematic dataset
NOT NULL |
major |
integer |
Release number of the dataset version; not used at this time
NOT NULL |
minor |
integer |
Minor release number of the dataset version; not used at this time
NOT NULL |
bugfix |
integer |
Patch or service pack number of the dataset version; not used at this time
NOT NULL |
dbname |
varchar(32) |
Name of the database in which the schematic dataset is stored |
owner |
varchar(32) |
The user who created the schematic dataset |
name |
varchar(128) |
The name of the schematic dataset
NOT NULL |
extclsid |
varchar(38) |
Not currently in use |
spatialref |
varchar(1024) |
Default spatial reference used when creating new diagrams |
blobs |
bytea |
Stores the default parameters for the dataset, such as the default node symbol, text separator, and character |
Field name |
Field type |
Description |
id |
integer |
Uniquely identifies a diagram type
NOT NULL |
objectclassid |
integer |
Foreign key to the id field in the sch_uniqueid table
NOT NULL |
creationname |
varchar(255) |
Name of the diagram class when the table is created
NOT NULL |
name |
varchar(255) |
Current name of the diagram class (if it was changed from the original name)
NOT NULL |
parentid |
integer |
ID of the parent diagram class entry
NOT NULL |
datasourceid |
integer |
Foreign key to the id field of sch<id>_datasrc |
builderclsid |
varchar(38) |
Class ID for the schema builder (custom query, network dataset, or standard)
|
linkerclsid |
varchar(38) |
Component managing feature to element relationship method
|
algorithmclsid |
varchar(38) |
Class ID of the algorithm that is automatically applied to diagrams of this type
|
blobs |
bytea |
Stores all the attribute and symbology information
|
Field name |
Field type |
Description |
id |
integer |
Uniquely identifies an element type
NOT NULL |
objectclassid |
integer |
Foreign key to id in gdb_objectclasses table
NOT NULL |
creationname |
varchar(255) |
Name of the element class when the table is created
NOT NULL |
name |
varchar(255) |
Current name of the element class (if it changed)
NOT NULL |
parentid |
integer |
Identifier of the parent element class entry
NOT NULL |
elementtype |
integer |
Value specifying the type of element (node, link, et cetera)
NOT NULL |
relationclsid |
varchar(38) |
Relationship to a feature class |
associateddsid |
integer |
Data source ID of related feature class |
associatedocid |
integer |
ID of the related feature classes from the gdb_objectclasses table |
datasourceid |
integer |
Foreign key to the id field in the sch<id>_datasrc table |
blobs |
bytea |
Stores attribute and symbology |
Field Name |
Field Type |
Description |
id |
integer |
Uniquely identifies a diagram
NOT NULL |
name |
varchar(255) |
Name of the diagram
NOT NULL |
folderid |
integer |
Foreign key to the sch<id>_folder table
NOT NULL |
diagramclassid |
integer |
Foreign key to sch<id>_diaclass table's objectclassid field
NOT NULL |
lastupdate |
timestamp without time zone |
Date and time of last user update |
version |
varchar(255) |
If generated from versioned data, lists which version
|
creationdate |
timestamp without time zone |
Date and time diagram was created |
creator |
varchar(100) |
Name of the user that created the diagram |
updatedby |
varchar(100) |
Name of the user that last updated the diagram |
spatialref |
varchar(1024) |
Spatial coordinates |
blobs |
bytea |
Stores the current positioning of all elements in the diagram |
Field Name |
Field Type |
Description |
id |
integer |
Uniquely identifies an element
NOT NULL |
diagramclassid |
integer |
Foreign key to the sch<id>_diaclass table's objectclassid field
NOT NULL |
diagramobjectid |
integer |
Foreign key to the sch<id>d_<diagram_type_name> table
NOT NULL |
schematicid |
varchar(128) |
Uniquely identifies an element; consists of diagramobjectid, diagramclassid, datasourceid, ucid, uoid, and usid
NOT NULL |
isinitial |
integer |
Indicates whether this element was part of the initial creation list
NOT NULL |
isdisplayed |
integer |
Indicates whether this element is currently displayed
NOT NULL |
relationobjectid |
integer |
ObjectID of related feature in relationship |
relationclassid |
integer |
Class ID of related feature in relationship |
datasourceid |
integer |
Foreign key to sch<id>_datasrc table |
ucid |
integer |
Class ID of corresponding feature |
uoid |
integer |
ObjectID of corresponding feature |
usid |
integer |
Subtype ID of corresponding feature |
ueid |
integer |
Enabled value of corresponding feature |
subtype |
integer |
Subtype of feature |
propertyset |
bytea |
Holds attribute information |
initialx |
numeric(32,20) |
X positon of element when created |
initialy |
numeric(32,20) |
Y position of element when created |