RJDBC limiting rows from Netezza -
I have an RJDBC connection with Nejeda, the query to be exceeded 256 rows is being cut in 256 rows. I have tested the queries in esquirell and they work fine (correct number of rows back - 600+)
I have also tried the following:
dbFetch (res, N = 1) dbFetch (res, n = 1000) dbSendQuery (conn, "select ... ", BelieNRows = FALSE)
All of these return only the first 256 rows. I am on Mac therefore the Odyssey is not an option.
Upgrading the JDBC driver from version 5 to version 7 solved the problem.
Comments
Post a Comment