解決MYSQL工具mysqldump 遇到 Out of memory 方法
由於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
例如: 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/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 【ERROR】ORA-27102: out of memory 解決方法Error
- ORA-27102: out of memory 問題解決方法
- ORA-27102: out of memory故障解決
- Win10系統玩cf出現out of memory的解決方法Win10
- ORA-27102: out of memory解決辦法
- OOM(Out Of Memory)OOM
- java out of memoryJava
- 由node的批量requests引起的”heap out of memory”解決方案
- OOM--OUT OF MEMORYOOM
- Composer 記憶體不足解決方案 PHP Fatal error: Out of memory記憶體PHPError
- 部署專案遇到的mysql問題以及解決方法MySql
- mysql登入遇到ERROR 1045問題解決方法MySqlError
- Java Out Of Memory解決之JAVA_OPTS引數說明與配置Java
- ORA-04030: out of process memory ...(initSubHeap:qk...)的錯誤解決
- JAVA IPMI Command time out 解決方法Java
- mysqldump意外終止的原因以及解決方法MySql
- MySQL的mysqldump工具的基本用法MySql
- 【MySQL】mysqldump備份失敗與解決方案合集MySql
- 遇到問題的解決方法
- An out of memory error has occurred.Error
- OOM(Out Of Memory)是什麼?OOM
- 詳解MySQL資料備份之mysqldump使用方法MySql
- mysql的常用備份工具:mysqldump和mysqlhotcopyMySql
- Nginx 報錯 504 Gateway Time-out 的解決方法NginxGateway
- 今天遇到的問題與解決方法
- gem install mysql遇到問題。解決方案MySql
- MySQL mysqldump資料匯出詳解MySql
- MySQL mysqldump命令MySql
- RAC遇到GC Buffer Busy的解決方法2GC
- RAC遇到GC Buffer Busy的解決方法1GC
- 安裝sql server遇到問題解決方法SQLServer
- note the ORA-27102: out of memory errorError
- 解決yarn打包時出現“FATAL ERROR: Reached heap limit Allocation failed - JavaScript heap out of memory”的問題YarnErrorMITAIJavaScript
- mysql之 mysqldump 備份恢復詳解MySql
- mysqldump 引數詳解(基於MySQL 5.6)MySql
- ORACLE匯入遇到ORACLE錯誤959解決方法Oracle
- exp 時遇到密碼有特殊字元(!@#)解決方法密碼字元
- 【MySql】mysqldump 的用法MySql