Problem Note 51085: An error occurs when you try to update a null value using SAS/ACCESS® Interface to ODBC
When you use SAS/ACCESS Interface to ODBC and the open-source PostgreSQL driver to update a null value in a PostgreSQL database, the following error might occur:
ERROR: Error updating table entry: [unixODBC][Driver Manager]Function sequence error
Workarounds
- Use SAS/ACCESS® Interface to PostgreSQL instead of SAS/ACCESS Interface to ODBC.
- Use SAS/ACCESS Interface to ODBC and explicit pass-through code to do the update using code similar to the following:
proc sql;
connect to odbc(dsn=data-source-name user=user-ID password=password);
execute(update public.class set name = 'Alfred' where id = 123) by odbc;
disconnect from odbc;
quit;
- Use SAS/ACCESS Interface to ODBC and a third-party PostgreSQL driver such as Progress/DataDirect.
Operating System and Release Information
SAS System | SAS/ACCESS Interface to ODBC | Microsoft Windows XP 64-bit Edition | 9.2 TS2M3 | |
Microsoft® Windows® for x64 | 9.2 TS2M3 | |
Microsoft Windows Server 2003 Datacenter Edition | 9.2 TS2M3 | |
Microsoft Windows Server 2003 Enterprise Edition | 9.2 TS2M3 | |
Microsoft Windows Server 2003 Standard Edition | 9.2 TS2M3 | |
Microsoft Windows Server 2003 for x64 | 9.2 TS2M3 | |
Microsoft Windows Server 2008 | 9.2 TS2M3 | |
Microsoft Windows Server 2008 R2 | 9.2 TS2M3 | |
Microsoft Windows Server 2008 for x64 | 9.2 TS2M3 | |
Microsoft Windows XP Professional | 9.2 TS2M3 | |
Windows 7 Enterprise 32 bit | 9.2 TS2M3 | |
Windows 7 Enterprise x64 | 9.2 TS2M3 | |
Windows 7 Professional 32 bit | 9.2 TS2M3 | |
Windows 7 Professional x64 | 9.2 TS2M3 | |
Windows 7 Ultimate 32 bit | 9.2 TS2M3 | |
Windows 7 Ultimate x64 | 9.2 TS2M3 | |
64-bit Enabled AIX | 9.2 TS2M3 | |
64-bit Enabled HP-UX | 9.2 TS2M3 | |
64-bit Enabled Solaris | 9.2 TS2M3 | |
HP-UX IPF | 9.2 TS2M3 | |
Linux | 9.2 TS2M3 | |
Linux for x64 | 9.2 TS2M3 | |
Solaris for x64 | 9.2 TS2M3 | |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
Type: | Problem Note |
Priority: | medium |
Topic: | Data Management ==> Data Sources ==> External Databases ==> ODBC (Open Database Connectivity)
|
Date Modified: | 2013-10-03 12:30:58 |
Date Created: | 2013-09-17 12:54:23 |