Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.