Deletes the database contents and all log files for the database, uncatalogs the database, and deletes the database subdirectory.
Scope
By default, this API affects all nodes that are listed in the $HOME/sqllib/db2nodes.cfg file.
Authorization
One of the following:
Required Connection
Instance. It is not necessary to call ATTACH before dropping a remote database. If the database is cataloged as remote, an instance attachment to the remote node is established for the duration of the call.
API Include File
sqlenv.h
C API Syntax
/* File: sqlenv.h */ /* API: Drop Database */ /* ... */ SQL_API_RC SQL_API_FN sqledrpd ( _SQLOLDCHAR * pDbAlias, _SQLOLDCHAR * pReserved2, struct sqlca * pSqlca); /* ... */ |
Generic API Syntax
/* File: sqlenv.h */ /* API: Drop Database */ /* ... */ SQL_API_RC SQL_API_FN sqlgdrpd ( unsigned short Reserved1, unsigned short DbAliasLen, struct sqlca * pSqlca, _SQLOLDCHAR * pReserved2, _SQLOLDCHAR * pDbAlias); /* ... */ |
API Parameters
REXX API Syntax
DROP DATABASE dbalias |
REXX API Parameters
Sample Programs
DROP DATABASE deletes all user data and log files. If the log files are needed for a roll-forward recovery after a restore operation, the files should be saved prior to calling this API.
The database must not be in use; all users must be disconnected from the database before the database can be dropped.
To be dropped, a database must be cataloged in the system database directory. Only the specified database alias is removed from the system database directory. If other aliases with the same database name exist, their entries remain. If the database being dropped is the last entry in the local database directory, the local database directory is deleted automatically.
If DROP DATABASE is issued from a remote client (or from a different instance on the same machine), the specified alias is removed from the client's system database directory. The corresponding database name is removed from the server's system database directory.
See Also