博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Mysql大表查询注意事项
阅读量:2498 次
发布时间:2019-05-11

本文共 926 字,大约阅读时间需要 3 分钟。

在执行查询时,Mysql默认把结果全部load到内存后再返回(这种模式可理解为Oracle的ALL_ROWS优化模式),如果表数据量太大的话,会导致内存溢出。
1.在mysql console连接数据库时:
加入-q选项,mysql -h hostname -u root -p -q
2.在jdbc连接数据库时:
在连接串中加入
useCursorFetch
=true
在创建的语句中,加入
setFetchSize,如
stmt = conn.createStatement(java.sql.ResultSet.TYPE_FORWARD_ONLY,
java.sql.ResultSet.CONCUR_READ_ONLY);
stmt.setFetchSize(Integer.MIN_VALUE); 
注意:
The Integer.MIN_VALUE is used by the MySQL driver as a signal to switch to streaming result set mode. It is not used as a value.
See the documentation, under "Resultset".
In summary:
By default, ResultSets are completely retrieved and stored in memory. You can tell the driver to stream the results back one row at a time by setting stmt.setFetchSize(Integer.MIN_VALUE); (in combination with a forward-only, read-only result set).

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/6906/viewspace-2086751/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/6906/viewspace-2086751/

你可能感兴趣的文章
python 多线程_thread
查看>>
SpringBoot2.0 + SpringCloud Eureka搭建高可用注册中心(Eureka之三)
查看>>
vue.js 组件-全局组件和局部组件
查看>>
svn 分支与合并的使用
查看>>
intellj idea
查看>>
浮动(clear)
查看>>
HierarchicalDataTemplate
查看>>
关于 keybd_event (vb篇)
查看>>
记公司的原型设计软件培训课程
查看>>
C语言知识点
查看>>
猴子吃桃
查看>>
tesseract-ocr图像识别技术(一)
查看>>
vs下dll与exe调试
查看>>
排列——递归
查看>>
cocos2d lua的cclog 在logcat中显示
查看>>
雅礼学习10.4
查看>>
Dota2 荒神罪 破解
查看>>
TP控制器的操作
查看>>
Installing Oracle Database 12c Release 2(12.2) RAC on RHEL7.3 in Silent Mode
查看>>
使用Metasploit进行端口扫描
查看>>