mysqlcheck 是 MySQL 自帶的工具,作用是
保養
表,其實就是檢查,分析,修復和優化了。以下來介紹mysqlcheck 工具的簡單使用,官方文件在這裡
以下的例子都是基於MySQL 5.6 版本運行狀態下(mysqlcheck是個在線工具), 不同的存儲引擎對於這個命令的支持程度不同(指的是check, repair, analyze, optimize),以下內容偏於操作,主要基於innodb 引擎。
提示:OPTIMIZE 在大表時候可能會消耗很多時間,不清楚原理情況下請謹慎使用!!! innodb 一般不用OPTIMIZE,請參閱Using MySQL OPTIMIZE tables? For InnoDB? Stop
檢查特定的表
注意在shell中執行,不是在mysql的交互環境下
#如果應用程式中提示某個表壞了,使用下面的命令來檢查。
$ mysqlcheck -c newmandela order -uroot -pEnter password: newmandela.order OK
newmandela 是庫名, order是表名,還需要輸入使用者名稱和密碼
檢查一個庫中的所有表
$ mysqlcheck -c newmandela -uroot -p Enter password: newmandela.account OK newmandela.alarm OK newmandela.alarm_settings OK newmandela.auth_group OK newmandela.auth_group_permissions OK newmandela.auth_permission OK...
檢查所有庫中的所有表
全部的函式庫和表格都檢查一遍了。
$mysqlcheck -c --all-databases -uroot -p Enter password: apmonitor.acinfo OK apmonitor.apdailysts OK apmonitor.apinfo OK apmonitor.apmonthsts OK apmonitor.apscanlog OK apmonitor.auth_group OK...
如果只想檢查某幾個函式庫呢?可以使用–databases 參數
$ mysqlcheck -c --databases newmandela radius -uroot -p Enter password: newmandela.account OK newmandela.alarm OK newmandela.alarm_settings OK newmandela.auth_group OK...
使用mysqlcheck 分析表
$ mysqlcheck -a radius payment_transactionrecord -uroot -pEnter password: radius.payment_transactionrecord Table is already up to date
上面的指令用來分析radius 函式庫的payment_transactionrecord
表, -a
表示analyze
#使用mysqlcheck 優化表
# mysqlcheck -o radius payment_transactionrecord -uroot -pEnter password: radius.payment_transactionrecord OK
-o
代表optimize ,這裡是優化radius 庫的payment_transactionrecord
表
使用mysqlcheck 修復表
# mysqlcheck -r radius payment_transactionrecord -uroot -pEnter password: radius.payment_transactionrecord OK
-r
代表repair ,這裡是修復radius 庫的payment_transactionrecord
#表
檢查,最佳化,修復表組合指令
# mysqlcheck -uroot -p --auto-repair -c -o newmandelaError: mysqlcheck doesn't support multiple contradicting commands.
上面的指令報錯了,去掉-c
# mysqlcheck -uroot -p --auto-repair -o newmandelaEnter password: newmandela.account note : Table does not support optimize, doing recreate + analyze instead status : OK newmandela.alarm note : Table does not support optimize, doing recreate + analyze instead status : OK newmandela.alarm_settings note : Table does not support optimize, doing recreate + analyze instead status : OK
每張表都出現了Table does not support optimize, doing recreate + analyze instead
, 代表什麼意思呢? 它的意思不是說innodb 引擎不支援最佳化,
mysqlcheck 常用選項
-
A, –all-databases
表示所有函式庫 -a, –analyze
分析表-
-o, –optimize
最佳化表格 -r, –repair
修正表格錯誤#-c, –check
檢查表是否出錯–auto-repair
自動修復損壞的表格-B, –databases
#選擇多個函式庫-1, –all-in-1
Use one query per database with tables listed in a comma separated way#-C, –check-only-changed
檢查表最後一次檢查之後的變動-g, –check- upgrade
Check for version dependent changes in the tables-F, –fast
Check tables that are not closed properly–fix-db-names
Fix DB names#–fix-table-names
Fix table names-f, –force
Continue even when there is an error-e, –extended
Perform extended check on a table. This will take a long time to execute.-m, –medium-check
Faster than extended check option, but does most checks-q, –quick
Faster than medium check option
以上是怎樣使用Mysqlcheck來檢查和修復, 優化表的詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于架构原理的相关内容,MySQL Server架构自顶向下大致可以分网络连接层、服务层、存储引擎层和系统文件层,下面一起来看一下,希望对大家有帮助。

在mysql中,可以利用char()和REPLACE()函数来替换换行符;REPLACE()函数可以用新字符串替换列中的换行符,而换行符可使用“char(13)”来表示,语法为“replace(字段名,char(13),'新字符串') ”。

方法:1、利用right函数,语法为“update 表名 set 指定字段 = right(指定字段, length(指定字段)-1)...”;2、利用substring函数,语法为“select substring(指定字段,2)..”。

mysql的msi与zip版本的区别:1、zip包含的安装程序是一种主动安装,而msi包含的是被installer所用的安装文件以提交请求的方式安装;2、zip是一种数据压缩和文档存储的文件格式,msi是微软格式的安装包。

转换方法:1、利用cast函数,语法“select * from 表名 order by cast(字段名 as SIGNED)”;2、利用“select * from 表名 order by CONVERT(字段名,SIGNED)”语句。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了关于MySQL复制技术的相关问题,包括了异步复制、半同步复制等等内容,下面一起来看一下,希望对大家有帮助。

本篇文章给大家带来了关于mysql的相关知识,其中主要介绍了mysql高级篇的一些问题,包括了索引是什么、索引底层实现等等问题,下面一起来看一下,希望对大家有帮助。

在mysql中,可以利用REGEXP运算符判断数据是否是数字类型,语法为“String REGEXP '[^0-9.]'”;该运算符是正则表达式的缩写,若数据字符中含有数字时,返回的结果是true,反之返回的结果是false。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

PhpStorm Mac 版本
最新(2018.2.1 )專業的PHP整合開發工具

Atom編輯器mac版下載
最受歡迎的的開源編輯器

ZendStudio 13.5.1 Mac
強大的PHP整合開發環境

SAP NetWeaver Server Adapter for Eclipse
將Eclipse與SAP NetWeaver應用伺服器整合。

EditPlus 中文破解版
體積小,語法高亮,不支援程式碼提示功能