Cleaning up Oracle
These instructions assume that you are using an Oracle database and guide you through the following tasks:
- Removing the table called STAFF that is used by the Error Handler sample
- Removing the ODBC definition for the database
To remove the database table and the ODBC definition:
- In a command window enter the following command:
sqlplus <uid>/<password>@STAFFDB
>DROP TABLE STAFF;
>quit
- Remove the ODBC definition for the database, which has the data source name (DSN) of STAFFDB,
by undoing the ODBC setup step; see
Enabling ODBC connections to the databases
in the WebSphere Message Broker documentation.
Back to Cleaning up the database