InterviewSolution
Saved Bookmarks
| 1. |
Which command is used to disable all the tables matching the given regex?(a) remove all(b) drop all(c) disable_all(d) all of the mentioned |
|
Answer» The correct option is (c) disable_all The best I can explain: The syntax for disable_all command is as follows : hbase> disable_all ‘r.*’ |
|