VeloDB Cloud
SQL Manual
Statments
Database-Administration-Statements
ADMIN-REPAIR-TABLE

ADMIN-REPAIR-TABLE

Name

ADMIN REPAIR TABLE

Description

This statement is used to attempt to preferentially repair the specified table or partition

Syntax:

ADMIN REPAIR TABLE table_name[ PARTITION (p1,...)]

Note:

  1. This statement only means to let the system try to repair the shard copy of the specified table or partition with high priority, and does not guarantee that the repair can be successful. Users can view the repair status through the ADMIN SHOW REPLICA STATUS command.
  2. The default timeout is 14400 seconds (4 hours). A timeout means that the system will no longer repair shard copies of the specified table or partition with high priority. Need to re-use this command to set

Example

  1. Repair the specified table

     ADMIN REPAIR TABLE tbl1;
  2. Repair the specified partition

     ADMIN REPAIR TABLE tbl1 PARTITION (p1, p2);

Keywords

ADMIN, REPAIR, TABLE

Best Practice