in reply to dropping or deleting tables

Deleting the content is probably a lot more efficient then dropping.

Delete the content by running DELETE FROM tablename - I'm unfamiliar with Sybase::CTlib but with DBI you do something like:

$dbh = DBI->connect(@database_parameters); $dbh->do("DELETE FROM tablename");
-- Joost downtime n. The period during which a system is error-free and immune from user input.