JDBC SQL Server 内存不足异常
我正在编写一个小实用程序,将 SQL Server 2005 表数据索引到 LUCENE 数据存储。我正在使用 JDBC SQL Server 驱动程序进行连接。从服务器返回的结果集大约有200万行。这总是会抛出内存不足异常。我已将客户端计算机的堆大小增加到 1.6 GB 左右,但没有效果。我怎样才能获取如此大的数据集,使用 JDBC 提供有限的内存。
亲切的问候
I am writing a small utility that index's a SQL Server 2005 table data to LUCENE data store. i am using a JDBC SQL Server driver for connectivity. The result set returned from the server has around 2 million rows. This always throws a Out of Memory Exception. I have increased the Heap size for the client machine to around 1.6 GB, but to no avail. How can i fetch such large data sets, using JDBC giving limited memory .
Kind Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你看过SQL中的LIMIT和TOP吗?另外,尝试在 Google 上搜索“SQL 查询分页”等短语。
Have you looked at LIMIT and TOP in SQL? Also, try Googling for phrases like 'SQL query pagination'.