create or replace function lobconverter(lobin in clob) return varchar2 is Result varchar2(5000); begin result:=lobin; return(Result); end lobconverter; -- Now we need to ensure that this function is being called on the remote site to achieve that we can simply create a view like the ...
通过DB_LINK访问远程表的时候出现 ORA-22992: cannot use LOB locators selected from remote tables 错误。 原因:因为表中含有clob字段,在统计库中用到这个表。 如果我们用不到这个clob字段,不访问这个clob字段就可以。 具体方法有两种: 1.直接登录远程服务器,在服务器上进行 select 查找; 2.在本地建立中间临时...
通过DB_LINK访问远程表的时候出现 ORA-22992: cannot use LOB locators selected from remote tables 错误。 原因:因为表中含有clob字段,在统计库中用到这个表。 如果我们用不到这个clob字段,不访问这个clob字段就可以。 具体方法有两种: 1.直接登录远程服务器,在服务器上进行 select 查找; 2.在本地建立中间临时...
Oracle数据库19cR1错误代码ORA-22992 描述-cannot use LOB locators selected from remote tables。详细的错误ORA-22992 会导致信息和操作建议。