Archives of Support Questions (Read Only)

This is an archived board for historical reference. Information and links may no longer be available or relevant
Announcements
This board is archived and read-only for historical reference. To ask a new question, please post a new topic on the appropriate active board.

Drop multiples tables

avatar
Explorer

Drop 100s tables from bash one by one, can be too slow
But Drop statement only admit ONE table
any idea/solution?

 

BR

1 ACCEPTED SOLUTION

avatar

If you want to delete a whole database you can:

 

drop database <dbname> cascade;

 

That will drop the database and all its tables.

 

View solution in original post

1 REPLY 1

avatar

If you want to delete a whole database you can:

 

drop database <dbname> cascade;

 

That will drop the database and all its tables.