According to SAS documentation on 9.4 version(latest as date), length(max) of numeric variable in SAS data set is 8 bytes or 15 significant digits.
However, in Netezza, numeric-BIGINT can hold up to 18 significant digits.
When we attempt to pull a numeric variable with more than 15 significant digits from Netezza into SAS; as it can’t hold excess of 15 digits, SAS throws either of the below errors:
28 PROC SQL;
29 CREATE TABLE NETEZZA_TEST AS
30 SELECT
31 SRC_STM_CD,
32 COUNT(PUT(CUST_ID,Z20.)||PUT(CUST_ID,Z20.)) AS CHK_COUNT
33 FROM DATA_Q.D_TABLE;
ERROR: Error during in-database processing.
ERROR: ERROR: ERROR: relation does not exist CCRMPRD.DATA_Q.D_TABLE
The maximum value of CHK_COUNT in above query is 6016788360167883 aka length of 16 digits.
If you wish to suppress these errors then try the TRUNCATE_BIGINT environment variable as explained here:
Also I'd suggest being careful with using SAS functions like PUT and SAS formats like Z20. on Netezza as they may not translate correctly. Do you get the same errors with a simple SELECT?
Keep in mind, if you use TRUNCATE_BIGINT=yes then use the column in calculations you will likely get inaccurate results.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.