我有以下简单的oracle查询:
select A.field
from table1 A
left join table2@remotedb B on A.id = B.id
表B有一个BLOB字段
运行良好
如果我在select:
中添加concatselect A.field||'x'
from table1 A
left join table2@remotedb B on A.id = B.id
我收到以下错误: “ora-22992不能使用从远程表中选择的lob定位器”
为什么在不是LOB文件的字段中添加concat会给我这个错误?!?
我该怎么做才能避免它?
答案 0 :(得分:0)
<IfModule mod_rewrite.c>
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/registration/service
RewriteRule (.*) https://www.dewesoft.com/$1 [R=301,L]
</IfModule>