DECODE(y, match_value, match, x/y) where:
if y = match_value, then the expression evaluates to match, or
if y does not equal match_value, then the expression is evaluated.
For example, the expression TR_CONTENTION_STREAMING/DELTA_TIME*100 should be converted to DECODE(DELTA_TIME, 0, 0, TR_CONTENTION_STREAMING/DELTA_TIME*100).
You need to delete the INTEGER4 construct and the FLOAT4 construct from expressions that contain those constructs. For example, the expression FLOAT4(TR_CONTENTION_STREAMING)/FLOAT4(TR_BIT_STREAMING) should be converted to TR_CONTENTION_STREAMING/TR_BIT_STREAMING.
NOTE
CA has reviewed the columnExpression.sys file for expressions that contain INTEGER4 and FLOAT4 and expressions of the form, x/y, and made the necessary modifications.