I have a complex SQL query which works when I paste it into SQLDeveloper from the source code or the debug logs but fails to return results when using iBATIS 2.3.4. Update: this exact same query also works in mybatis-3.0.6 (with mybatis-spring-1.0.2).
The debug log shows that the query returns no results, but it should return 100+ rows. I know from testing that results map correctly to the domain object. No parameters are mapped, but I intend to add those later.
I encapsulated this in a CDATA block to avoid clashes with <,>,%, and I also tried using the escape characters in the xml. If I replace the nested query named "date_range" with something like
(select 123 start_dt, 134 end_dt from dual) date_range
(which is the logical equivalent) I get the correct number of rows, but the "inventory" column (and therefore the availability column) always returns zero
sum(decode(nvl(o.datetime_id,0),0,0,1)) as inventory
If I replace the nested date_range query with a logically equivalent substr function I receive no rows, either.
select min(datetime_id) start_dt, max(datetime_id) end_dt
from my_dates
where substr(datetime,1,6)='200903'
Does anyone have any idea what the problem might be?
Here's the full query; I've added comments to highlight some things, but these comments are not in the xml:
<select id="reportedObs" resultMap="reportedObsMap">
<![CDATA[
-- this is the main query from which a few stats are generated
with avail as (
select station_id, start_dt, end_dt, end_dt-start_dt+1 as total_hours
from
(
select dates.station_id,
case
when dates.closed_dt is not null then
case
when dates.closed_dt>=dates.start_dt then dates.start_dt
end
when dates.start_dt>dates.por_start_dt then dates.start_dt
when dates.end_dt>dates.por_start_dt then dates.por_start_dt
end as start_dt,
case
when dates.closed_dt is not null then
case
when dates.closed_dt>=dates.end_dt then dates.end_dt
when dates.closed_dt>=dates.start_dt then dates.closed_dt
end
when dates.end_dt>dates.por_start_dt then dates.end_dt
end as end_dt
from
(
select sta.station_id, por.por_start_dt, por.por_end_dt, start_dt, end_dt,
case
when sta.commdate='UN' then null
else
(select datetime_id
from my_dates
where time=TO_DATE(sta.commdate,'YYYYMMDD')
)
end as comm_dt,
null as closed_dt
from my_stations sta
join my_special_table por on sta.station_id=por.station_id,
-- There may be some conflict in this nested subquery
-- if replaced with a logically equivalent query, the correct number of rows
-- are returned by the query
(
select min(datetime_id) start_dt, max(datetime_id) end_dt
from my_dates
where datetime like '200903%'
) date_range
) dates
) all_dates
where start_dt is not null
) -- end of avail query
select avail.station_id,
avail.total_hours,
-- This column always incorrectly returns 0 in the iBATIS results
sum(decode(nvl(o.datetime_id,0),0,0,1)) as inventory,
-- likewise this column, basically using the results above, also incorrectly returns 0
to_char(100*(sum(decode(nvl(o.datetime_id,0),0,0,1))/avail.total_hours),'999D9') as availability
from avail
left outer join my_data o on avail.station_id=o.station_id
and o.datetime_id between avail.start_dt and avail.end_dt
group by avail.station_id, avail.total_hours
]]>
</select>