Unit_tree 
Logical Entity Name  Unit_tree 
Default Table Name  Unit_tree 
Physical Only  NO 
Do Not Generate  False 
Owner   
Definition 
 
Note 
 
PreSQL   
DDL Code  CREATE TABLE Unit_tree(
     NODE_ID            NUMBER(19, 0)      NOT NULL,
     PARENT_NODE_ID     NUMBER(19, 0),
     UNIT_ID            NUMBER(19, 0)      NOT NULL,
     UNIT               VARCHAR2(128)      NOT NULL,
     ABBREVIATION       VARCHAR2(30),
     DESCRIPTION        VARCHAR2(1000),
     IS_LEAF            CHAR(1)            NOT NULL,
     FULL_PATH          VARCHAR2(3000),
     CONSTRAINT PK_UNIT PRIMARY KEY (NODE_ID),
     CONSTRAINT FK_UNIT_PARENT_SELF FOREIGN KEY (PARENT_NODE_ID)
     REFERENCES Unit_tree(NODE_ID)
)
;



CREATE INDEX FK_UNIT_PARENT_SELF ON Unit_tree(PARENT_NODE_ID)
;
 
PostSQL   

Unit_tree Columns 
ColumnName  Domain  Datatype  NULL  Definition 
NODE_ID(PK)  Identifier  NUMBER(19, 0)  NO 
 
PARENT_NODE_ID(FK)  Identifier  NUMBER(19, 0)  YES 
 
UNIT_ID  Identifier  NUMBER(19, 0)  NO 
 
UNIT    VARCHAR2(128)  NO 
 
ABBREVIATION    VARCHAR2(30)  YES 
 
DESCRIPTION  Description  VARCHAR2(1000)  YES 
 
IS_LEAF    CHAR(1)  NO 
 
FULL_PATH    VARCHAR2(3000)  YES 
 

Unit_tree Primary and Unique Keys 
Key Name  Key Type  Keys 
PK_UNIT  PrimaryKey  NODE_ID 

Unit_tree Foreign Keys 
Parent Relationships: 
Table Name  Type  Cardinality  Constraint Name  VerbPhrase  InversePhrase  Foreign Keys  Is Supertype  Deferrable  Initially Deferred 
Unit_tree  Non-Identifying  Zero or One to Zero or More  FK_UNIT_PARENT_SELF      PARENT_NODE_ID  NO  NO  NO 
Child Relationships: 
Table Name  Type  Cardinality  Constraint Name  VerbPhrase  InversePhrase  Foreign Keys  Is Subtype  Deferrable  Initially Deferred 
Unit_tree  Non-Identifying  One To Zero or More  FK_UNIT_PARENT_SELF        NO  NO  NO 

Unit_tree Check Constraints 
Check Constraint Name  CheckConstraint 

Unit_tree Storage 
STORAGE OPTION  STORAGE VALUE 
TABLESPACE   
PctFree  10 
PCTUSED  
MinExtents 
MaxExtents  2147483645 
Initial  64 
Next 
PctIncrease 
InitTrans 
MaxTrans  255 
Organization  Heap 
Cache  NO 
Logging  Logged 
Parallel  NO 
Parallel Degrees   
Parallel Instances   
FREELISTS   
FREELIST GROUPS   
Buffer Pool   
Table Compression  NO 
Row Movement  Disabled 

Unit_tree Growth Metrics 
TABLE METRIC  TABLE METRIC VALUE 
Current Row Count  50 
Growth  10 
Growth Type  Rows 
Growth Period  per Month 
Maximum Rows  100 

Unit_tree Security Types 
Name  Current Value 

Unit_tree Where Used - Model Usage 
Mapped Object  Is User Defined?  Denormalization Mappings  Description  Bound Attachments 
Logical
Unit_tree 
NO       
BARD - MySQL (MySQL)
Does Not Exist 
NO       
BARD_Dev (Oracle)
Unit_tree 
NO       
Current Production (Oracle)
Does Not Exist 
NO       

Unit_tree Where Used - Submodel Usage 
Model  Submodel Usage 
Logical  Main Model 
Logical  Dictionary 
BARD_Dev (Oracle)  Main Model 
BARD_Dev (Oracle)  Dictionary