解決MYSQL工具mysqldump 遇到 Out of memory 方法

season0891發表於2010-04-30
由於MYSQL資料庫龐大,當使用mysqldump匯出檔案時碰到Out Of Memory (10445)時只需在命令mysqldump後面加上-q 即可解決;
 
使用 -q (--quick) 的引數, 使用此引數就不會使用到 Memory.

例如: mysqldump -q -u root DB_NAME > DB_NAME.sql

說明如下:
--quick, -q
This option is useful for dumping large tables.
It forces mysqldump to retrieve rows for a table from the server a row at a time rather than retrieving the entire row set and buffering it in memory before writing it out.

come from:http://u.besgold.com/space-1-do-blog-id-17232.html

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/90618/viewspace-661681/,如需轉載,請註明出處,否則將追究法律責任。

相關文章