Use this statement to delete all database files associated with a database.
DROP DATABASE database-name [ KEY key ]
The DROP DATABASE statement physically deletes all associated database files from disk. If the database file does not exist, or is not in a suitable condition for the database to be started, an error is generated.
DROP DATABASE cannot be used in a stored procedure.
Required permissions are set using the database server -gu option. The default setting is to require DBA authority.
The database must not be in use in order to be dropped.
You must specify a key if you want to drop a strongly encrypted database
Not supported on Windows CE.
In addition to deleting the database files from disk, any associated transaction log file or transaction log mirror file is deleted.
SQL/92 Vendor extension.
SQL/99 Vendor extension.
Sybase Not supported by Adaptive Server Enterprise.
Drop the database temp.db, in the C:\temp directory..
DROP DATABASE 'c:\temp\temp.db'
SQL Anywhere Studio 9.0.1
Copyright © 1989–2004 Sybase, Inc. Portions copyright © 2001–2004 iAnywhere Solutions, Inc. All rights reserved.