ENABLE TABLE

Syntax

ENABLE TABLE table_name [IF bool_expr]

Description

Enables named table.

Example

        HConnection conn = HConnectionManager.newConnection();
        System.out.println(conn.execute("ENABLE TABLE foo"));

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