BDNA Data Platform 5.4 July 2017 (Oracle)
CAT_CLOUD_PRICING_TIER - Cloud pricing tier 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_CLOUD_PRICING_TIER_ID number 0  √  null CAT_CLOUD_REGION table's unique identifier
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
CAT_CPU_MODEL_ID number 0  √  null CAT_CPU_MODEL_ID table's unique identifier
VIRTUAL_CPU varchar2 500  √  null Virtual CPU
MIN_VIRTUAL_CPU number 0  √  null Minimum of virutal cpu
MAX_VIRTUAL_CPU number 0  √  null Maximum of virutal cpu
PLATFORM varchar2 255  √  null Name of cloud platform
INSTANCE_CLASS varchar2 1000  √  null Name of cloud platform
INSTANCE_FAMILY varchar2 1000  √  null Name of cloud platform
MIN_CORES number 0  √  null Minimum of cores
MAX_CORES number 0  √  null Maximum of cores
MIN_STORAGE number 0  √  null Minimum of storage in GB
MAX_STORAGE number 0  √  null Maximum of storage in GB
MIN_MEMORY number 0  √  null Minimum of memory in GB
MAX_MEMORY number 0  √  null Maximum of memory in GB
MIN_DISK_PERFORM varchar2 1000  √  null Minimum of disk performance
MAX_DISK_PERFORM varchar2 1000  √  null Maximum of disk performance
DISK_PERFORM_UNIT varchar2 50  √  null Unit of disk performance, suche as 'IOPS'
MIN_NETWORK_PERFORM varchar2 1000  √  null Minimum of network performance
MAX_NETWORK_PERFORM varchar2 1000  √  null Maximum of network performance
NETWORK_PERFORM_UNIT varchar2 1000  √  null Unit of network performance, such as 'Gigabit'
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_CLOUD_PRICING_TIER_ID,f_tcat.CREATE_DATE,f_tcat.LAST_MODIFIED_DATE,f_tcat.CAT_CPU_MODEL_ID,f_tcat.VIRTUAL_CPU,f_tcat.MIN_VIRTUAL_CPU,f_tcat.MAX_VIRTUAL_CPU,f_tcat.PLATFORM,f_tcat.INSTANCE_CLASS,f_tcat.INSTANCE_FAMILY,f_tcat.MIN_CORES,f_tcat.MAX_CORES,f_tcat.MIN_STORAGE,f_tcat.MAX_STORAGE,f_tcat.MIN_MEMORY,f_tcat.MAX_MEMORY,f_tcat.MIN_DISK_PERFORM,f_tcat.MAX_DISK_PERFORM,f_tcat.DISK_PERFORM_UNIT,f_tcat.MIN_NETWORK_PERFORM,f_tcat.MAX_NETWORK_PERFORM,f_tcat.NETWORK_PERFORM_UNIT,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_CLOUD_PRICING_TIER f_tcat where not exists (select 1 from TPC_CLOUD_PRICING_TIER tpc_tab where tpc_tab.CAT_CLOUD_PRICING_TIER_ID=f_tcat.CAT_CLOUD_PRICING_TIER_ID ) union all SELECT "CAT_CLOUD_PRICING_TIER_ID","CREATE_DATE","LAST_MODIFIED_DATE","CAT_CPU_MODEL_ID","VIRTUAL_CPU","MIN_VIRTUAL_CPU","MAX_VIRTUAL_CPU","PLATFORM","INSTANCE_CLASS","INSTANCE_FAMILY","MIN_CORES","MAX_CORES","MIN_STORAGE","MAX_STORAGE","MIN_MEMORY","MAX_MEMORY","MIN_DISK_PERFORM","MAX_DISK_PERFORM","DISK_PERFORM_UNIT","MIN_NETWORK_PERFORM","MAX_NETWORK_PERFORM","NETWORK_PERFORM_UNIT","TO_BE_DELETED","TO_BE_DELETED_ON","DELETE_REASON","PRIVATE_FLAG","IS_PRIVATE","PRIVATE_TYPE","REPLACEMENT_ID" FROM ( SELECT COALESCE(tpc.CAT_CLOUD_PRICING_TIER_ID,tcat.CAT_CLOUD_PRICING_TIER_ID) CAT_CLOUD_PRICING_TIER_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.CAT_CPU_MODEL_ID,tcat.CAT_CPU_MODEL_ID) CAT_CPU_MODEL_ID,COALESCE(tpc.VIRTUAL_CPU,tcat.VIRTUAL_CPU) VIRTUAL_CPU,COALESCE(tpc.MIN_VIRTUAL_CPU,tcat.MIN_VIRTUAL_CPU) MIN_VIRTUAL_CPU,COALESCE(tpc.MAX_VIRTUAL_CPU,tcat.MAX_VIRTUAL_CPU) MAX_VIRTUAL_CPU,COALESCE(tpc.PLATFORM,tcat.PLATFORM) PLATFORM,COALESCE(tpc.INSTANCE_CLASS,tcat.INSTANCE_CLASS) INSTANCE_CLASS,COALESCE(tpc.INSTANCE_FAMILY,tcat.INSTANCE_FAMILY) INSTANCE_FAMILY,COALESCE(tpc.MIN_CORES,tcat.MIN_CORES) MIN_CORES,COALESCE(tpc.MAX_CORES,tcat.MAX_CORES) MAX_CORES,COALESCE(tpc.MIN_STORAGE,tcat.MIN_STORAGE) MIN_STORAGE,COALESCE(tpc.MAX_STORAGE,tcat.MAX_STORAGE) MAX_STORAGE,COALESCE(tpc.MIN_MEMORY,tcat.MIN_MEMORY) MIN_MEMORY,COALESCE(tpc.MAX_MEMORY,tcat.MAX_MEMORY) MAX_MEMORY,COALESCE(tpc.MIN_DISK_PERFORM,tcat.MIN_DISK_PERFORM) MIN_DISK_PERFORM,COALESCE(tpc.MAX_DISK_PERFORM,tcat.MAX_DISK_PERFORM) MAX_DISK_PERFORM,COALESCE(tpc.DISK_PERFORM_UNIT,tcat.DISK_PERFORM_UNIT) DISK_PERFORM_UNIT,COALESCE(tpc.MIN_NETWORK_PERFORM,tcat.MIN_NETWORK_PERFORM) MIN_NETWORK_PERFORM,COALESCE(tpc.MAX_NETWORK_PERFORM,tcat.MAX_NETWORK_PERFORM) MAX_NETWORK_PERFORM,COALESCE(tpc.NETWORK_PERFORM_UNIT,tcat.NETWORK_PERFORM_UNIT) NETWORK_PERFORM_UNIT,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_CLOUD_PRICING_TIER tpc LEFT JOIN TCAT_CLOUD_PRICING_TIER tcat ON tcat.CAT_CLOUD_PRICING_TIER_ID = tpc.CAT_CLOUD_PRICING_TIER_ID inner JOIN TPC_UUID uuid ON tpc.CAT_CLOUD_PRICING_TIER_ID = uuid.CAT_UUID_ID AND SIGN(tpc.CAT_CLOUD_PRICING_TIER_ID )!= -1 ) cat_tab UNION ALL SELECT tpc.CAT_CLOUD_PRICING_TIER_ID,tpc.CREATE_DATE,tpc.LAST_MODIFIED_DATE,tpc.CAT_CPU_MODEL_ID,tpc.VIRTUAL_CPU,tpc.MIN_VIRTUAL_CPU,tpc.MAX_VIRTUAL_CPU,tpc.PLATFORM,tpc.INSTANCE_CLASS,tpc.INSTANCE_FAMILY,tpc.MIN_CORES,tpc.MAX_CORES,tpc.MIN_STORAGE,tpc.MAX_STORAGE,tpc.MIN_MEMORY,tpc.MAX_MEMORY,tpc.MIN_DISK_PERFORM,tpc.MAX_DISK_PERFORM,tpc.DISK_PERFORM_UNIT,tpc.MIN_NETWORK_PERFORM,tpc.MAX_NETWORK_PERFORM,tpc.NETWORK_PERFORM_UNIT,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_CLOUD_PRICING_TIER tpc WHERE SIGN(tpc.CAT_CLOUD_PRICING_TIER_ID )= -1
 
Confidential and Proprietary to BDNA