DISABLE TABLE

Syntax

DISABLE TABLE table_name [IF bool_expr]

Description

Disables named table (required before dropping a table).

Example

        HConnection conn = HConnectionManager.newConnection();
        conn.execute("DISABLE TABLE foo");

        // Or using the API
        conn.disableTable("foo");