Folks,
I have a table named ABC in a database named D1. This table has a CLOB column named CLOBCOL.
I am trying to replicate ABC table in database D2 using dblink.
So, I tried to create Materialized View ABCMV in database D2 using the dblink. But, cant create because of CLOB datatype.
So, thought of creating View first in database D1 and then create Materialized View in database D2.
But, the problem is, if I do so, then the materialized view cant be 'refresh fast' as it needs materialized view log. Now, since this Materialized View is supposed to be based on View in D1, where and how do I create materialized view log.
Please help.