Hi,
Bryan Irvine wrote, On 12/6/2003 2:04 AM:
> Is there a SQL command to delete everything (including the tables) from
> a db? Not a complete drop so that the db doesn't exist anymore, but
> just so that there's nothing in it.
you can drop the schema.
drop schema NAME cascade;
C.