you can try:
ALTER FRAGMENT ON TABLE tablename INIT IN dbspacename_or_fragment_expression;
This will, oddly enough, work for both fragmented and non-fragmented tables and tends to be faster than CLUSTERing an index since it does not have to sort the data.
It might work - I never tryed it
Dafna