Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个到 Netezza 的 RJDBC 连接。应该返回超过 256 行的查询将被截断为 256 行。我已经在 SQuirrel 中测试了查询,它们工作正常(返回正确的行数 - 600+)。
我还尝试了以下方法:
dbFetch(res, n=-1) dbFetch(res, n=1000) dbSendQuery(conn, "select ...", believeNRows=FALSE)
所有这些都只返回前 256 行。我在 Mac 上,所以 ODBC 不是一个选项。
将 JDBC 驱动程序从版本 5 升级到版本 7 解决了该问题。