If you are the database administrator for the database mydb, you can destroy it using the following UNIX command:
% destroydb dbname
This action physically removes all of the UNIX files
associated with the database and cannot be undone, so
this should only be done with a great deal of forethought.データベース mydb の管理者は次の UNIX コマンドでデータベース を削除出来ます:
% destroydb dbname
この作業はデータベースに付随関連する全ての UNIX ファイルを削除し、
取り止めることが出来ませんので、充分な注意を払った上で行って
下さい。
It is also possible to destroy a database from within an SQL session by using
> drop database dbname
また、SQL セッション内で、
> drop database dbname
としてもデータベースを削除することが出来ます。