Using the DROP DISTRIBUTIONS Option

Use the DROP DISTRIBUTIONS option to force the removal of distribution information from the sysdistrib system catalog table.

When you specify the DROP DISTRIBUTIONS option, the database server removes the existing distribution data for the column or columns that you specify. If you do not specify any columns, the database server removes all the distribution data for that table.

You must have the DBA privilege or be owner of the table to use this option.

The following example shows how to remove distributions for the customer_num column in the customer table:
UPDATE STATISTICS LOW 
   FOR TABLE customer (customer_num) DROP DISTRIBUTIONS;

As the example shows, you drop the distribution data at the same time you update the statistical data that the LOW mode option generates.