Previous Topic: Modifying a Check ConstraintNext Topic: Changing the Area of a Table


Revising the Estimated Row Count for a Table

ALTER TABLE Statement

To change the estimated row count on the table definition, use the SQL DDL ALTER TABLE statement with the ESTIMATED NUMBER OF ROWS option.

Considerations

Example

In the following example, the estimated row count for the EMPLOYEE table is revised.

alter table emp_employee
   estimated row count 750000;