MySQL查询大表注意事项有哪些

这篇文章将为大家详细讲解有关MySQL查询大表注意事项有哪些,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。

在执行查询时,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).

关于“MySQL查询大表注意事项有哪些”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。