Problem Note 60097: A CLI execute error occurs when using PROC APPEND to create a new Netezza table
When you use the APPEND procedure to write a SAS® data set to a new Netezza table, the following error occurs:
ERROR: CLI execute error:
This problem occurs when the table contains a BIGINT data type.
The following code illustrates this behavior:
libname x netezza server='nz_server' database=nzdatabase user=nzUser
password=nzpwd;
data work.tab_bulk2;
i=9223372036854875807;
output;
run;
proc delete data=x.tab_bulk2;
run;
proc append base=x.tab_bulk2 (bulkload=yes dbtype=(i='bigint'))
data=work.tab_bulk2 force;
run;
Note: When you do not use the BULKLOAD option, the following error occurs:
ERROR: CLI execute error: Overflow of BIGINT column detected.
To work around this issue, use the CHAR data type instead of the BIGINT data type, as shown in the following example code:
proc append base=x.tab_bulk2 (bulkload=yes dbtype=(i='CHAR(20)'))
data=work.tab_bulk2 force;
run;
Click the Hot Fix tab in this note to access the hot fix for this issue.
Operating System and Release Information
SAS System | SAS/ACCESS Interface to Netezza | Microsoft® Windows® for x64 | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Microsoft Windows 8 Enterprise 32-bit | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Microsoft Windows 8 Enterprise x64 | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Microsoft Windows 8 Pro 32-bit | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Microsoft Windows 8 Pro x64 | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Microsoft Windows 8.1 Enterprise 32-bit | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Microsoft Windows 8.1 Enterprise x64 | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Microsoft Windows 8.1 Pro 32-bit | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Microsoft Windows 8.1 Pro x64 | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Microsoft Windows 10 | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Microsoft Windows Server 2008 | 9.4_M3 | | 9.4 TS1M3 | |
Microsoft Windows Server 2008 R2 | 9.4_M3 | | 9.4 TS1M3 | |
Microsoft Windows Server 2008 for x64 | 9.4_M3 | | 9.4 TS1M3 | |
Microsoft Windows Server 2012 Datacenter | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Microsoft Windows Server 2012 R2 Datacenter | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Microsoft Windows Server 2012 R2 Std | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Microsoft Windows Server 2012 Std | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Windows 7 Enterprise 32 bit | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Windows 7 Enterprise x64 | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Windows 7 Home Premium 32 bit | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Windows 7 Home Premium x64 | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Windows 7 Professional 32 bit | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Windows 7 Professional x64 | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Windows 7 Ultimate 32 bit | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Windows 7 Ultimate x64 | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
64-bit Enabled AIX | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
64-bit Enabled Solaris | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
HP-UX IPF | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
Linux for x64 | 9.4_M3 | 9.42 | 9.4 TS1M3 | 9.4 TS1M5 |
*
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.
When you use PROC APPEND to write a SAS data set to a new Netezza table that contains a BIGINT data type, a CLI execute error occurs.
Type: | Problem Note |
Priority: | high |
Date Modified: | 2017-04-14 10:40:43 |
Date Created: | 2017-03-08 13:53:06 |