BDNA Data Platform 5.4 July 2017 (SQL Server)
CAT_SW_REL_PLATFORM - Software release platform information table

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_SW_REL_PLATFORM_ID numeric 20  √  null CAT_SW_REL_PLATFORM table's unique identifier
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
REL_PLATFORM varchar 2000  √  null Software release's platform name
CAT_SW_RELEASE_ID numeric 20  √  null Software release's unique identifier
PLATFORM_LABEL varchar 2000  √  null The name of platform supported by the software release
HAS_FP numeric 24  √  null A flag to indicate whether the software release has a fingerprint (BDNA Internal column)
PLATFORM_TYPE varchar 255  √  null A flag to indicate whether the software release's supported platform is a server, a desktop, both a server/desktop, or a mainframe
DESUPFLAG varchar 10  √  null A flag that indicates the entry has been de-supported by the vendor. De-support date is in the past (whether the exact date is known or unknown)
DISCONTINUEDFLAG varchar 10  √  null A flag that indicates the entry has been discontinued by the vendor. Discontinued date is in the past (whether the exact date is known or unknown). The entry might or might not be supported by the vendor
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)
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
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_SW_REL_PLATFORM AS SELECT f_tcat.CAT_SW_REL_PLATFORM_ID,f_tcat.CREATE_DATE,f_tcat.LAST_MODIFIED_DATE,f_tcat.REL_PLATFORM,f_tcat.CAT_SW_RELEASE_ID,f_tcat.PLATFORM_LABEL,f_tcat.HAS_FP,f_tcat.PLATFORM_TYPE,f_tcat.DESUPFLAG,f_tcat.DISCONTINUEDFLAG,f_tcat.TO_BE_DELETED,f_tcat.TO_BE_DELETED_ON,f_tcat.DELETE_REASON,f_tcat.PRIVATE_FLAG,f_tcat.IS_PRIVATE,f_tcat.PRIVATE_TYPE,f_tcat.REPLACEMENT_ID from TCAT_SW_REL_PLATFORM f_tcat where not exists (select 1 from TPC_SW_REL_PLATFORM tpc_tab where tpc_tab.CAT_SW_REL_PLATFORM_ID=f_tcat.CAT_SW_REL_PLATFORM_ID ) union all SELECT * FROM ( SELECT COALESCE(tpc.CAT_SW_REL_PLATFORM_ID,tcat.CAT_SW_REL_PLATFORM_ID) CAT_SW_REL_PLATFORM_ID,COALESCE(tpc.CREATE_DATE,tcat.CREATE_DATE) CREATE_DATE,CASE WHEN ISNULL(tpc.LAST_MODIFIED_DATE,'31-DEC-1900') > tcat.LAST_MODIFIED_DATE THEN tpc.LAST_MODIFIED_DATE WHEN ISNULL(tpc.LAST_MODIFIED_DATE,'31-DEC-1900') < tcat.LAST_MODIFIED_DATE THEN tcat.LAST_MODIFIED_DATE ELSE tcat.LAST_MODIFIED_DATE END LAST_MODIFIED_DATE, COALESCE(cast(tpc.REL_PLATFORM as varchar(500)) ,cast(tcat.REL_PLATFORM as varchar(500)) ) REL_PLATFORM,COALESCE(tpc.CAT_SW_RELEASE_ID,tcat.CAT_SW_RELEASE_ID) CAT_SW_RELEASE_ID,COALESCE(cast(tpc.PLATFORM_LABEL as varchar(255)) ,cast(tcat.PLATFORM_LABEL as varchar(255)) ) PLATFORM_LABEL,COALESCE(tpc.HAS_FP,tcat.HAS_FP) HAS_FP,COALESCE(tpc.PLATFORM_TYPE,tcat.PLATFORM_TYPE) PLATFORM_TYPE,COALESCE(tpc.DESUPFLAG,tcat.DESUPFLAG) DESUPFLAG,COALESCE(tpc.DISCONTINUEDFLAG,tcat.DISCONTINUEDFLAG) DISCONTINUEDFLAG,COALESCE(tpc.TO_BE_DELETED,tcat.TO_BE_DELETED) TO_BE_DELETED,COALESCE(tpc.TO_BE_DELETED_ON,tcat.TO_BE_DELETED_ON) TO_BE_DELETED_ON,COALESCE(tpc.DELETE_REASON,tcat.DELETE_REASON) DELETE_REASON,COALESCE(uuid.PRIVATE_FLAG,tcat.PRIVATE_FLAG) PRIVATE_FLAG, COALESCE(uuid.IS_PRIVATE,tcat.IS_PRIVATE) IS_PRIVATE, COALESCE(uuid.PRIVATE_TYPE,tcat.PRIVATE_TYPE) PRIVATE_TYPE, COALESCE(tpc.REPLACEMENT_ID,tcat.REPLACEMENT_ID) REPLACEMENT_ID FROM TPC_SW_REL_PLATFORM tpc LEFT JOIN TCAT_SW_REL_PLATFORM tcat ON tcat.CAT_SW_REL_PLATFORM_ID = tpc.CAT_SW_REL_PLATFORM_ID INNER JOIN TPC_UUID uuid ON tpc.CAT_SW_REL_PLATFORM_ID = uuid.CAT_UUID_ID AND SIGN(tpc.CAT_SW_REL_PLATFORM_ID )!= -1 ) cat_tab UNION ALL SELECT tpc.CAT_SW_REL_PLATFORM_ID,tpc.CREATE_DATE,tpc.LAST_MODIFIED_DATE,cast(tpc.REL_PLATFORM as varchar(500)) REL_PLATFORM,tpc.CAT_SW_RELEASE_ID,cast(tpc.PLATFORM_LABEL as varchar(255)) PLATFORM_LABEL,tpc.HAS_FP,tpc.PLATFORM_TYPE,tpc.DESUPFLAG,tpc.DISCONTINUEDFLAG,tpc.TO_BE_DELETED,tpc.TO_BE_DELETED_ON,tpc.DELETE_REASON,tpc.PRIVATE_FLAG,tpc.IS_PRIVATE,tpc.PRIVATE_TYPE,tpc.REPLACEMENT_ID FROM TPC_SW_REL_PLATFORM tpc WHERE SIGN(tpc.CAT_SW_REL_PLATFORM_ID )= -1
 
Possibly Referenced Tables/Views:

Confidential and Proprietary to BDNA