문제

Afternoon, I'm currently wondering if mysqlcheck -q which stands for quick. Just as thorough as mysqlcheck -r. This isn't in the idea of repairing the tables within a MySQL database, but to see if the discovery of any errors show themselves just as thoroughly. The idea is to bypass the length of time to which the entire repair takes. It's much easier to do a quick check, and does quick possibly shift any table information?

Thanks for your help.

도움이 되었습니까?

해결책

mysqlcheck -q doesn't scan through rows. It only goes through indexes. If there are any incorrect links in rows it doesn't check them. I would avoid using -q unless you know there are no incorrect links in rows.

mysqlcheck -r simply repairs the tables. Please check mysqlcheck utility man page for more details.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top