Hi .
I want to create a updatable materialized view with the DEFERRED option. In other words just want to create a mv and dont want the DATA of the base table to be filled in at creation of this mv.
It returns me back with the following error.
"ORA-22992: cannot use LOB locators selected from remote tables"

Here is my code
CREATE MATERIALIZED VIEW xyz_mv
BUILD DEFERRED
REFRESH FORCE
for update
AS SELECT * FROM xyz@ORACLE.Net

My xyz table contains a column of the LOB data type.

How am i going to create an updatable mv base on the table containing LOB columns.


Suggesstions.

RAFF