When I tried to copy data from table1 in db1 to table2 in db2 using DB Link, I got error that "the table doesn't exist" if the table contains a BLOB column.
How can I solve this problem?
CODE
-- table containing BLOB
INSERT INTO CUSTOMERS@DB2
SELECT * FROM CUSTOMERS
/
ORA-00942 table or view does not exist
-- table with only basic data types
INSERT INTO CUSTOMERS@DB2
SELECT * FROM CUSTOMERS
/
123 rows created
INSERT INTO CUSTOMERS@DB2
SELECT * FROM CUSTOMERS
/
ORA-00942 table or view does not exist
-- table with only basic data types
INSERT INTO CUSTOMERS@DB2
SELECT * FROM CUSTOMERS
/
123 rows created