Hello All,
I use Oracle 19c, I get the ORA-02070 error. Is it because apex_collections have clob columns? However, I do not use them in DML statement. What do you recommend?
insert into t_tab@dblink(c1, c2, c3, c4, c5, c6)
with
q1 as (
SELECT
C001, C002, C003, C004, C005, C006
FROM APEX_COLLECTIONS WHERE COLLECTION_NAME = 'APEX_COLLECTION_1')
select * from q1;
ORA-02070: database does not support in this context
Thanks in advance