Field name |
Field type |
Description |
id |
Int |
Unique identifier of the schematic dataset
Not null |
major |
Int |
Release number of the dataset version; not used at this time
Not null |
minor |
Int |
Minor release number of the dataset version; not used at this time
Not null |
bugfix |
Int |
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 |
Blob |
Stores the default parameters for the dataset, such as the default node symbol, text separator, and character
|
Field name |
Field type |
Description |
id |
Int |
Uniquely identifies a diagram type
Not null |
objectclassid |
Int |
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 |
Int |
Id of the parent diagram class entry
Not null |
datasourceid |
Int |
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 |
Blob |
Stores all the attribute and symbology information
|
Field name |
Field type |
Description |
id |
Int |
Uniquely identifies an element type
Not null |
objectclassid |
Int |
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 |
Int |
Id of the parent element class entry |
elementtype |
Int |
Value specifying the type of element (node, link, etc.) |
relationclsid |
Varchar(38) |
Relationship to a feature class
|
associateddsid |
Int |
Data source id of related feature class
|
associatedocid |
Int |
Id of the related feature classes from the gdb_objectclasses table
|
datasourceid |
Int |
Foreign key to the ID field in the sch<id>_datasrc table
|
blobs |
Blob |
Stores attribute and symbology
|
Field name |
Field type |
Description |
id |
Int |
Uniquely identifies a diagram
Not null |
name |
Varchar(255) |
Name of the diagram |
folderid |
Int |
Foreign key to the sch<id>_folder table
Not null |
diagramclassid |
Int |
Foreign key to sch<id>_diaclass table's objectclassid field
Not null |
lastupdate |
Datetime |
Date and time of last user update
Not null |
version |
Varchar(255) |
If generated from versioned data, lists which version
|
creationdate |
Datetime |
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 |
Char(1024) |
Spatial coordinates
|
blobs |
Blob |
Stores the current positioning of all elements in the diagram
|
Field name |
Field type |
Description |
id |
Int |
Uniquely identifies an element
Not null |
diagramclassid |
Int |
Foregn key to the sch<id>_diaclass table's objectclass id field
Not null |
diagramobjectid |
Int |
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 |
Int |
Indicates whether this element was part of the initial creation list
Not null |
isdisplayed |
Int |
Indicates whether this element is currently displayed
Not null |
relationobjectid |
Int |
Object id of related feature in relationship
|
relationclassid |
Int |
Class id of related feature in relationship
|
datasourceid |
Int |
Foreign key to sch<id>_datasrc table
|
ucid |
Int |
Class id of corresponding feature
|
uoid |
Int |
Object id of corresponding feature
|
usid |
Int |
Subtype id of corresponding feature
|
ueid |
Int |
Enabled value of corresponding feature
|
subtype |
Int |
Subtype of feature
|
propertyset |
Blob |
Holds attribute information
|
initialx |
Decimal(32,20) |
X positon of element when created
|
initialy |
Decimal(32,20) |
Y position of element when created
|