您的当前位置:首页正文

oracle 跨库 查询 参数带方法 慢

2024-11-09 来源:个人技术集锦

select count(1) from ccc.table_a@ORCL111 where phone = fn_encryption('1888888888');
查询超级慢,接近30秒

select count(1) from ccc.table_a@ORCL111 where phone = '1888888888';
查询大概有3,4秒


直接在ORCL111里查询速度很快
select count(1) from table_a where phone = fn_encryption('1888888888');

原因不明,记录一下,待解决

Top