To find out how much space the current database is using, start a MySQL console on the database in question, then run this:
:::sql
SELECT table_schema "Database Name"
, SUM(data_length + index_length) / (1024 * 1024) "Database Size in MB"
FROM information_schema.TABLES
GROUP BY table_schema;
Start a MySQL console and run the following command:
:::sql
drop database `<your_username>$<your_database_name>`;
replacing placeholders in brackets respectively with your username and the
database name that should be deleted. See "Using MySQL"
help page or more details.