Skip to Main Content

APEX

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

DML over db link with apex_collections gives ORA-02070

ronald_2017Feb 13 2024

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

This post has been answered by Ennio71 on Feb 14 2024
Jump to Answer

Comments

Post Details

Added on Feb 13 2024
6 comments
299 views