GoldenGate: Source Table with a calculated column; Destination table with number data type?
We have been asked to modify a GoldenGate 12.2 replicated source table in this way:
alter table T_TEST add CALC_TEST_ID as ((T_TEST.TEST_ID*3)+1);
Our developer would like to see the value only in the destination table:
alter table T_TEST add CALC_TEST_ID as number;
They would like to hide the calculation at the destination end.
Can this be done?