DISABLE TABLE table_name [IF bool_expr]
Disables named table (required before dropping a table).
HConnection conn = HConnectionManager.newConnection();
conn.execute("DISABLE TABLE foo");
// Or using the API
conn.disableTable("foo");