すべての SQL ステートメントを表示するように p6spy を設定しました。ただし、空間クエリの正しい SQL ステートメントは表示されません。以下に一例を示します。
select *
from ( select this_.myactivity_id as y0_
from mytable this_
where this_.start_time_local >= '2012-01-08 17:02:59.575'
and sdo_within_distance( this_.start_point
, 'oracle.sql.STRUCT@3848d632'
, 'DISTANCE=8845.042641272024 UNIT=meter ') = 'TRUE'
order by this_.start_time_gmt desc )
where rownum <= 10
空間オブジェクトは「oracle.sql.STRUCT@3848d632」として表されます。正しく表示する方法を知っていますか?
ありがとう、