I've got an AcuXDBC server that provides ODBC access to some COBOL databases. I do not control the Databases, nor the configuration of the tables.

One particular table, if I use SQL Server to query the table with a WHERE clause to specify a specific date, I get the expected results. However, if I use MS Access to query the same table on the date column, Access returns every record, not just the ones with that date.

Other date columns in this table work normally. The only difference I see is that this particular Date Column has an index that allows duplicates. Whereas, the columns that work do not have any indexes on them.

I do not see why the presence of an index would cause the selection to fail.

In access the following query works as expected:

SELECT PUBLIC_ODH2DB.ORDER_NUMBER, PUBLIC_ODH2DB.POST_DATE, PUBLIC_ODH2DB.ENTRY_DATE
FROM PUBLIC_ODH2DB
WHERE (((PUBLIC_ODH2DB.ENTRY_DATE)=#2/3/2012#));

But this one doesn't:

SELECT PUBLIC_ODH2DB.ORDER_NUMBER, PUBLIC_ODH2DB.POST_DATE, PUBLIC_ODH2DB.ENTRY_DATE
FROM PUBLIC_ODH2DB
WHERE (((PUBLIC_ODH2DB.POST_DATE)=#2/3/2012#));

Both Entry_Date and Post_Date are defined as Date in the COBOL, but look like DateTime to ODBC. The only difference I see is that Access reports Post_date to be Indexed (Dups OK).

link|improve this question
Can you add to your question both the query that works and the one that doesn't? – JohnFx Jan 13 at 22:24
If you get the DBA to temporarily drop the index on POST_DATE, does the problem go away? – HansUp Feb 7 at 0:02
feedback

1 Answer

Assuming your Access query uses a Date/Time literal in its WHERE clause, make sure you surround the literal value with Access Date/Time delimiters (#).

When Access hands the statement off to ODBC, the driver will translate it to match the server's expected format for Date/Time data type values.

SELECT afield, another_field, etc
FROM Your_ODBC_linked_table
WHERE date_field = #2012/01/13#;

If the server's Date/Time field may include a time component other than midnite (0), revise the WHERE clause to incorporate all values from 2012/01/13, regardless of time of day.

WHERE date_field >= #2012/01/13# AND date_field < #2012/01/14#;

This was just a WAG. But the delimiter issue bites a lot of people new to Access. If I guessed wrong, show us your SQL as John suggested and tell us more about the server's date field.

link|improve this answer
They are defined as Date fields in the source file, but date/time in the ODBC, so they all come in as midnight. I updated the question per John's suggestion. – BillN Feb 6 at 23:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.