I'm trying importing oracle data into Excel 2010 for use within PowerPivot. I'm providing a specific query versus selecting tables. The issue I'm seeing is the data retrieved ignores my filter criteria. The query below should pull in data from Sep 30 forward, but the result is actually all of the data in the tables. Has anyone encountered this?
select trunc(ed.merge_tm,'dd') as dwnldt, count(*) as cnt
from ACMDB.eventdetail ed, ACMDB.machine m
where ed.serial_number = m.serial_number
and m.enabled='Y'
and trunc(ed.merge_tm,'dd')> '30-SEP-12'
group by trunc(ed.merge_tm,'dd')
order by trunc(ed.merge_tm,'dd') desc