Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Access 2002 query against Oracle 10g linked tables

Status
Not open for further replies.
Dec 13, 2002
109
GB
Hello

I have a simple query:

SELECT Date() AS Expr1, 10GTABLE.LASTDATE, Date()-[LASTDATE] AS Expr2
FROM 10GDATABASE
WHERE (((Date()-[LASTDATE])>90));

10GDATABASE is an Oracle 10g database. Using the Oracle 10g ODBC driver I get an error:

ODBC -- call failed.
[Oracle][ODBC][Ora]ora-00932: inconsistent datatypes: expected INTERVAL DAT TO SECOND got NUMBER (#932)

This query use to work against a 9i database using 9i ODBC.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top