Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

PRB: "Not a Valid Month" Error when Inserting into Oracle Date Fields


View products that this article applies to.

Symptoms

Existing code that successfully inserts records into a Date field in an Oracle table breaks when upgrading the Microsoft ODBC driver for Oracle from version 2.00.XXXX (Msorcl10.dll) to version 2.573.XXXX (Msorcl32.dll).

For example, the following insert statement works with the old version of Microsoft ODBC driver for Oracle (Msorcl10.dll):
.....
sSql = "INSERT INTO DATETEST VALUES ('1988-12-01 10:23:03')"
conn.Execute sSql
				
However, with the newer version of the Microsoft ODBC driver for Oracle (Msorcl32.dll), the same insert statement gives the following error:
Microsoft OLE DB Provider for ODBC Drivers error '80040e07'
[Microsoft][ODBC driver for Oracle][Oracle]ORA-01843: not a valid month
/Project/xxx.asp, line xx

↑ Back to the top


Cause

In the old version of Microsoft ODBC driver for Oracle (Msorcl10.DLL), the ODBC driver does the following when it connects:
ALTER SESSION SET NLS_DATE_FORMAT = 'YYYY-MM-DD HH:MI:SS'
				
This explains why an insert of a date field in the following format worked in the previous driver:
'YYYY-MM-DD HH:MI:SS'
				
With the Microsoft ODBC driver for Oracle (Msorcl32.dll), this feature has been removed. The new driver does not set the date format for Oracle date fields automatically.

↑ Back to the top


Resolution

To allow existing insert statements to work correctly with the new driver, modify your code as follows:
conn.Execute "ALTER SESSION SET NLS_DATE_FORMAT = 'YYYY-MM-DD HH:MI:SS'"

sSql = "INSERT INTO DATETEST VALUES ('1988-12-01 10:23:03')"

conn.Execute sSql
				

↑ Back to the top


Status

This behavior is by design.

↑ Back to the top


Keywords: KB230912, kbprb, kboracle, kbdriver, kbdatabase

↑ Back to the top

Article Info
Article ID : 230912
Revision : 4
Created on : 11/26/2003
Published on : 11/26/2003
Exists online : False
Views : 338