Hi,
You can do it by:
- unload the table to a flat file
- drop and recreate the table using a large enough first extent size to hold all its current data (taking into account growth in time) and a proper next extent size (which will probably will never be used if you calculate the correct size for the first extent). Remember to create the table on a dbspace large enough to hold it.
- reload the table from the flat file and recreate indexes, triggers, permissions, etc.
Hope this helps