使用SID从Oracle丢失到RPC的异构远程代理连接

时间:2018-11-21 10:14:08

标签: oracle dblink

我正在尝试使用连接到mysql的dblink在plsql中进行选择。

这是我的查询:

 select
                t1."header_id" header_id
            from
                "table1"@times t1
                ,"table2"@times t2

            where
                t1."processed" = 'no'
                and 
                t1."returned" = 'yes'  
                and
                t2."header_id" is null  
                and
                t1."header_id" = t2."header_id"(+)
  ;

这是错误:

enter image description here

请帮助。谢谢。

0 个答案:

没有答案