In some scenarios, the performance is much slower when using the fully qualified name for certain SQL functions.
上次发布: January 6, 2017ArcSDE/Enterprise Geodatabase
漏洞 ID 编号
BUG-000096827
已提交
June 1, 2016
上次修改时间
June 5, 2024
适用范围
ArcSDE/Enterprise Geodatabase
找到的版本
10.2.2
状态
Known Limit
经开发团队审核,已确定此问题与不受 Esri 控制的软件的已知限制有关。 问题的“其他信息”部分可能包含进一步说明。
附加信息
This is just how the fully qualified _f functions work. In order to get better performance with the query, you should be able to use a pl/sql cursor or a ref cursor object to run the sql with the sde.st_intersects operator (select id from table1 t1, table2 t2 where sde.st_intersects (t1.shape,t2.shape) = 1) rather than use the package function (sde.st_relation_function.st_intersects_f). This will then use the domain index and run much faster.