Hi,
DROP TABLE deletes all refrerences to a Table on the system , all indexes and Stats will be dropped as well.
Why are you issueing the DROP table? If you want to get rid of all the rows you could issue a
Delete Table ...
insteadand it will ONLY delete the data rows, everything else will be left in tact.