BDNA Data Platform 5.4 July 2017 (SQL Server)
CAT_TO_BE_DELETED_UUID - Information regarding Catalog Id's that are marked as TO_BE_DELETED

Legend:
Primary key columns
Columns with indexes
Implied relationships
Excluded column relationships
< n > number of related tables
 
Column Type Size Nulls Auto Default Children Parents Comments
CAT_UUID_ID numeric 20  √  null Catalog Id that would be deleted
CREATE_DATE datetime 16,3  √  null The date when row was first created
LAST_MODIFIED_DATE datetime 16,3  √  null The date when last modification on the row was made
TABLE_NAME varchar 30  √  null Table name of the UUID which it belongs to
COLUMN_NAME varchar 30  √  null Primary Key column name of the table
PARENT_TABLE_NAME varchar 30  √  null Please ignore this column
PARENT_COLUMN_NAME varchar 30  √  null Please ignore this column
PARENT_CAT_UUID_ID numeric 20  √  null Please ignore this column
PRIVATE_FLAG numeric 3  √  null 0 = Not Modified (i.e. original Technopedia entry),1 = Modified Technopedia object, 2 = Proprietary object (those that have negative ids)
IS_PRIVATE varchar 1  √  null y = a private entry, n = original Technopedia entry
PRIVATE_TYPE varchar 500  √  null PRIVATE_TYPE = NULL if PRIVATE_FLAG = 0,PRIVATE_TYPE = Modified Technopedia entry if PRIVATE_FLAG = 1,PRIVATE_TYPE = Proprietary entry if PRIVATE_FLAG = 2
TO_BE_DELETED varchar 1  √  null Would this record be deleted? eg: Y
TO_BE_DELETED_ON datetime 16,3  √  null The date when this record would be deleted
DELETE_REASON varchar 500  √  null The reason why the entry is marked to be deleted (Values: Duplicate,Inaccurate)
REPLACEMENT_ID numeric 20  √  null Unique identifier of the replacement entry whenever the entry is marked to be deleted for 'Duplicate' reason

Analyzed at Thu Jul 20 12:14 PDT 2017

View Definition:
CREATE VIEW CAT_TO_BE_DELETED_UUID AS SELECT CAT_UUID_ID, CREATE_DATE, LAST_MODIFIED_DATE, TABLE_NAME, COLUMN_NAME, PARENT_TABLE_NAME, PARENT_COLUMN_NAME, PARENT_CAT_UUID_ID, PRIVATE_FLAG, IS_PRIVATE, PRIVATE_TYPE, TO_BE_DELETED, TO_BE_DELETED_ON, DELETE_REASON, REPLACEMENT_ID FROM CAT_UUID WHERE TO_BE_DELETED='Y'
 
Possibly Referenced Tables/Views:

Confidential and Proprietary to BDNA