mysql重建索引

回覆文章
yehlu
Site Admin
文章: 3245
註冊時間: 2004-04-15 17:20:21
來自: CodeCharge Support Engineer

mysql重建索引

文章 yehlu »

http://hi.baidu.com/coffeefoam/blog/ite ... e1ef4.html

代碼: 選擇全部

alter table tbl_name disable keys;
替代
myisamchk --keys-used=0 -rq /path/to/db/tbl_name

代碼: 選擇全部

alter table tbl_name enable keys;
替代
myisamchk -r -q /path/to/db/tbl_name
回覆文章

回到「MySQL」