Stage_tree 
Logical Entity Name  Stage_tree 
Default Table Name  Stage_tree 
Physical Only  NO 
Do Not Generate  False 
Owner   
Definition 
 
Note 
 
PreSQL   
DDL Code  CREATE TABLE Stage_tree(
     NODE_ID            NUMBER(19, 0)      NOT NULL,
     PARENT_NODE_ID     NUMBER(19, 0),
     STAGE_ID           NUMBER(19, 0)      NOT NULL,
     STAGE_STATUS       VARCHAR2(20)       NOT NULL,
     STAGE              VARCHAR2(128)      NOT NULL,
     IS_LEAF            CHAR(1)            NOT NULL,
     DESCRIPTION        VARCHAR2(1000),
     FULL_PATH          VARCHAR2(3000),
     CONSTRAINT PK_STAGE PRIMARY KEY (NODE_ID),
     CONSTRAINT FK_STAGE_PARENT_NODE_ID FOREIGN KEY (PARENT_NODE_ID)
     REFERENCES Stage_tree(NODE_ID)
)
;
 
PostSQL   

Stage_tree Columns 
ColumnName  Domain  Datatype  NULL  Definition 
NODE_ID(PK)  Identifier  NUMBER(19, 0)  NO 
 
PARENT_NODE_ID(FK)  Identifier  NUMBER(19, 0)  YES 
 
STAGE_ID  Identifier  NUMBER(19, 0)  NO 
 
STAGE_STATUS    VARCHAR2(20)  NO 
 
STAGE    VARCHAR2(128)  NO 
 
IS_LEAF    CHAR(1)  NO 
 
DESCRIPTION  Description  VARCHAR2(1000)  YES 
 
FULL_PATH    VARCHAR2(3000)  YES 
 

Stage_tree Primary and Unique Keys 
Key Name  Key Type  Keys 
PK_STAGE  PrimaryKey  NODE_ID 

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

Stage_tree Check Constraints 
Check Constraint Name  CheckConstraint 

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

Stage_tree Growth Metrics 
TABLE METRIC  TABLE METRIC VALUE 
Current Row Count  20 
Growth  Static 
Growth Type  N/A 
Growth Period  N/A 
Maximum Rows 

Stage_tree Security Types 
Name  Current Value 

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

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