InterviewSolution
Saved Bookmarks
| 1. |
REPAIR TABLE does not work for _____________(a) MyISAM(b) ARCHIVE(c) InnoDB(d) CSV |
|
Answer» Correct choice is (c) InnoDB To elaborate: ‘REPAIR TABLE’ works for MyISAM, ARCHIVE, and CSV tables. For MyISAM tables, it has the same effect as ‘myisamchk –recover’ tbl_name by default. This statement does not work with views. |
|