by fallingdown » Thu Apr 11, 2013 2:54 pm
Well, that could be it, but based on the following I am not entirely convinced it is server time related as the server is in the same building as me (although I will investigate the time element).
I opened a table to browse the data.
Right-clicked on a record on the date column, for this example call it row_eff_datetime. The value in the data browser that I see for this example is 2013-04-09 14:39:38 (using yyyy-MM-dd HH:mm:ss format)
Navigated to the Order/Filter options.
I see a list of quick filter options, the first few are listed as:
row_eff_datetime = 2013-04-09 14:39:38
row_eff_datetime <> 2013-04-09 14:39:38
row_eff_datetime > 2013-04-09 14:39:38
row_eff_datetime < 2013-04-09 14:39:38
I select the second option (<>).
Now I open the Query Manager view.
The most recent query shows as follows
SELECT * FROM MYSCHEMA.MY_TABLE WHERE ROW_EFF_DATETIME <> TO_DATE('2013-04-09 15:39:38','YYYY-MM-DD HH24:MI:SS')
Everything up to this last point would lead me to believe that my query would be predicated on 2013-04-09 14:39:38, but the actual query is filtered for one hour later.