BDNA Data Platform 5.4 July 2017 (Oracle)
CAT_APPS_COMPATIBILITY - Application Compatibility 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_APPS_COMPATIBILITY_ID number 0  √  null CAT_APPS_COMPATIBILITY table's unique identifier
CAT_COMPATIBILITY_ID number 0  √  null Id which refers to CAT_COMPATIBILITY table
CREATE_DATE date 7  √  null The date when row was first created
LAST_MODIFIED_DATE date 7  √  null The date when last modification on the row was made
BIT32_COMPATIBILITY_STATUS varchar2 10  √  null A flag to indicate whether it is a 32-bit compatibility or not
BIT64_COMPATIBILITY_STATUS varchar2 10  √  null A flag to indicate whether it is a 64-bit compatibility or not
COMPATIBILITY_STATUS varchar2 10  √  null A flag to indicate whether it is compatibile or not 1 = compatible
OFFICIAL varchar2 10  √  null A flag to indicate whether the compatibility is official (e.g. from VMware official website)
CERTIFICATION varchar2 256  √  null The level of certification for the compatibility. Values: 'Citrix Ready', 'Community Verified'
COMMUNITY number 0  √  null The percentage of community members that vote for 'Compatible' status
DIFFICULTY varchar2 30  √  null The difficulty of work required to make an application to be compatible
REFERENCE varchar2 2000  √  null URL as a reference to the information on the application compatibility
CAT_MANUFACTURER_ID number 0  √  null Compatible application's unique manufaturer identifier
CAT_SW_PRODUCT_ID number 0  √  null Compatible application's unique product identifier
CAT_SW_EDITION_ID number 0  √  null Compatible application's unique edition identifier
CAT_SW_VERSION_ID number 0  √  null Compatible application's unique version identifier
CAT_SW_RELEASE_ID number 0  √  null Compatible application's unique release identifier
CAT_APPCOMP_MANUFACTURER_ID number 0  √  null Compatible VMware or Citrix's unique manufaturer identifier
CAT_APPCOMP_SW_PRODUCT_ID number 0  √  null Compatible VMware or Citrix's unique product name identifier
CAT_APPCOMP_SW_EDITION_ID number 0  √  null Compatible VMware or Citrix's unique edition identifier
CAT_APPCOMP_SW_VERSION_ID number 0  √  null Compatible VMware or Citrix's unique release identifier
CAT_APPCOMP_SW_RELEASE_ID number 0  √  null Compatible VMware or Citrix's unique release identifier
DESUPFLAG varchar2 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)
TO_BE_DELETED varchar2 1  √  null Would this record be deleted? eg: Y
TO_BE_DELETED_ON date 7  √  null The date when this record would be deleted
DELETE_REASON varchar2 500  √  null The reason why the entry is marked to be deleted (Values: Duplicate,Inaccurate)
PRIVATE_FLAG number 0  √  null 0 = Not Modified (i.e. original Technopedia entry),1 = Modified Technopedia object, 2 = Proprietary object (those that have negative ids)
IS_PRIVATE varchar2 1  √  null y = a private entry, n = original Technopedia entry
PRIVATE_TYPE varchar2 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 number 0  √  null Unique identifier of the replacement entry whenever the entry is marked to be deleted for 'Duplicate' reason

Analyzed at Thu Jul 20 12:13 PDT 2017

View Definition:
SELECT f_tcat.CAT_APPS_COMPATIBILITY_ID,f_tcat.CAT_COMPATIBILITY_ID,f_tcat.CREATE_DATE,f_tcat.LAST_MODIFIED_DATE,f_tcat.BIT32_COMPATIBILITY_STATUS,f_tcat.BIT64_COMPATIBILITY_STATUS,f_tcat.COMPATIBILITY_STATUS,f_tcat.OFFICIAL,f_tcat.CERTIFICATION,f_tcat.COMMUNITY,f_tcat.DIFFICULTY,f_tcat.REFERENCE,f_tcat.CAT_MANUFACTURER_ID,f_tcat.CAT_SW_PRODUCT_ID,f_tcat.CAT_SW_EDITION_ID,f_tcat.CAT_SW_VERSION_ID,f_tcat.CAT_SW_RELEASE_ID,f_tcat.CAT_APPCOMP_MANUFACTURER_ID,f_tcat.CAT_APPCOMP_SW_PRODUCT_ID,f_tcat.CAT_APPCOMP_SW_EDITION_ID,f_tcat.CAT_APPCOMP_SW_VERSION_ID,f_tcat.CAT_APPCOMP_SW_RELEASE_ID,f_tcat.DESUPFLAG,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_APPS_COMPATIBILITY f_tcat where not exists (select 1 from TPC_APPS_COMPATIBILITY tpc_tab where tpc_tab.CAT_APPS_COMPATIBILITY_ID=f_tcat.CAT_APPS_COMPATIBILITY_ID ) union all SELECT "CAT_APPS_COMPATIBILITY_ID","CAT_COMPATIBILITY_ID","CREATE_DATE","LAST_MODIFIED_DATE","BIT32_COMPATIBILITY_STATUS","BIT64_COMPATIBILITY_STATUS","COMPATIBILITY_STATUS","OFFICIAL","CERTIFICATION","COMMUNITY","DIFFICULTY","REFERENCE","CAT_MANUFACTURER_ID","CAT_SW_PRODUCT_ID","CAT_SW_EDITION_ID","CAT_SW_VERSION_ID","CAT_SW_RELEASE_ID","CAT_APPCOMP_MANUFACTURER_ID","CAT_APPCOMP_SW_PRODUCT_ID","CAT_APPCOMP_SW_EDITION_ID","CAT_APPCOMP_SW_VERSION_ID","CAT_APPCOMP_SW_RELEASE_ID","DESUPFLAG","TO_BE_DELETED","TO_BE_DELETED_ON","DELETE_REASON","PRIVATE_FLAG","IS_PRIVATE","PRIVATE_TYPE","REPLACEMENT_ID" FROM ( SELECT COALESCE(tpc.CAT_APPS_COMPATIBILITY_ID,tcat.CAT_APPS_COMPATIBILITY_ID) CAT_APPS_COMPATIBILITY_ID,COALESCE(tpc.CAT_COMPATIBILITY_ID,tcat.CAT_COMPATIBILITY_ID) CAT_COMPATIBILITY_ID,COALESCE(tpc.CREATE_DATE,tcat.CREATE_DATE) CREATE_DATE,GREATEST(NVL(tpc.LAST_MODIFIED_DATE,TO_DATE('31-DEC-1900','DD-MON-YYYY')),tcat.LAST_MODIFIED_DATE) LAST_MODIFIED_DATE,COALESCE(tpc.BIT32_COMPATIBILITY_STATUS,tcat.BIT32_COMPATIBILITY_STATUS) BIT32_COMPATIBILITY_STATUS,COALESCE(tpc.BIT64_COMPATIBILITY_STATUS,tcat.BIT64_COMPATIBILITY_STATUS) BIT64_COMPATIBILITY_STATUS,COALESCE(tpc.COMPATIBILITY_STATUS,tcat.COMPATIBILITY_STATUS) COMPATIBILITY_STATUS,COALESCE(tpc.OFFICIAL,tcat.OFFICIAL) OFFICIAL,COALESCE(tpc.CERTIFICATION,tcat.CERTIFICATION) CERTIFICATION,COALESCE(tpc.COMMUNITY,tcat.COMMUNITY) COMMUNITY,COALESCE(tpc.DIFFICULTY,tcat.DIFFICULTY) DIFFICULTY,COALESCE(tpc.REFERENCE,tcat.REFERENCE) REFERENCE,COALESCE(tpc.CAT_MANUFACTURER_ID,tcat.CAT_MANUFACTURER_ID) CAT_MANUFACTURER_ID,COALESCE(tpc.CAT_SW_PRODUCT_ID,tcat.CAT_SW_PRODUCT_ID) CAT_SW_PRODUCT_ID,COALESCE(tpc.CAT_SW_EDITION_ID,tcat.CAT_SW_EDITION_ID) CAT_SW_EDITION_ID,COALESCE(tpc.CAT_SW_VERSION_ID,tcat.CAT_SW_VERSION_ID) CAT_SW_VERSION_ID,COALESCE(tpc.CAT_SW_RELEASE_ID,tcat.CAT_SW_RELEASE_ID) CAT_SW_RELEASE_ID,COALESCE(tpc.CAT_APPCOMP_MANUFACTURER_ID,tcat.CAT_APPCOMP_MANUFACTURER_ID) CAT_APPCOMP_MANUFACTURER_ID,COALESCE(tpc.CAT_APPCOMP_SW_PRODUCT_ID,tcat.CAT_APPCOMP_SW_PRODUCT_ID) CAT_APPCOMP_SW_PRODUCT_ID,COALESCE(tpc.CAT_APPCOMP_SW_EDITION_ID,tcat.CAT_APPCOMP_SW_EDITION_ID) CAT_APPCOMP_SW_EDITION_ID,COALESCE(tpc.CAT_APPCOMP_SW_VERSION_ID,tcat.CAT_APPCOMP_SW_VERSION_ID) CAT_APPCOMP_SW_VERSION_ID,COALESCE(tpc.CAT_APPCOMP_SW_RELEASE_ID,tcat.CAT_APPCOMP_SW_RELEASE_ID) CAT_APPCOMP_SW_RELEASE_ID,COALESCE(tpc.DESUPFLAG,tcat.DESUPFLAG) DESUPFLAG,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_APPS_COMPATIBILITY tpc LEFT JOIN TCAT_APPS_COMPATIBILITY tcat ON tcat.CAT_APPS_COMPATIBILITY_ID = tpc.CAT_APPS_COMPATIBILITY_ID inner JOIN TPC_UUID uuid ON tpc.CAT_APPS_COMPATIBILITY_ID = uuid.CAT_UUID_ID AND SIGN(tpc.CAT_APPS_COMPATIBILITY_ID )!= -1 ) cat_tab UNION ALL SELECT tpc.CAT_APPS_COMPATIBILITY_ID,tpc.CAT_COMPATIBILITY_ID,tpc.CREATE_DATE,tpc.LAST_MODIFIED_DATE,tpc.BIT32_COMPATIBILITY_STATUS,tpc.BIT64_COMPATIBILITY_STATUS,tpc.COMPATIBILITY_STATUS,tpc.OFFICIAL,tpc.CERTIFICATION,tpc.COMMUNITY,tpc.DIFFICULTY,tpc.REFERENCE,tpc.CAT_MANUFACTURER_ID,tpc.CAT_SW_PRODUCT_ID,tpc.CAT_SW_EDITION_ID,tpc.CAT_SW_VERSION_ID,tpc.CAT_SW_RELEASE_ID,tpc.CAT_APPCOMP_MANUFACTURER_ID,tpc.CAT_APPCOMP_SW_PRODUCT_ID,tpc.CAT_APPCOMP_SW_EDITION_ID,tpc.CAT_APPCOMP_SW_VERSION_ID,tpc.CAT_APPCOMP_SW_RELEASE_ID,tpc.DESUPFLAG,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_APPS_COMPATIBILITY tpc WHERE SIGN(tpc.CAT_APPS_COMPATIBILITY_ID )= -1
 
Confidential and Proprietary to BDNA