I had this error (OraOLEDB error '80040e4b') in two occasions:
1) With a very low date value (like "0005-02-03")
2) With a calculated field (like "sum(field1)/field2")
Both issues occurred with a VB6 application using the ORAOLEDB provider 10g r2 but the errors could be reproduced with an Access VBA routine as well.
The first occurrence was solved by correcting the data i.e. by changing the date to "2005-02-03".
The second occurrence was solved by the described workaround. I.e. changing the expression to round(sum(field1)/field2,2).
Hopefully this problem will be - and stay - fixed in future provider versions.
Hints for solving the problem where found at
1) With a very low date value (like "0005-02-03")
2) With a calculated field (like "sum(field1)/field2")
Both issues occurred with a VB6 application using the ORAOLEDB provider 10g r2 but the errors could be reproduced with an Access VBA routine as well.
The first occurrence was solved by correcting the data i.e. by changing the date to "2005-02-03".
The second occurrence was solved by the described workaround. I.e. changing the expression to round(sum(field1)/field2,2).
Hopefully this problem will be - and stay - fixed in future provider versions.
Hints for solving the problem where found at