If you want to check the DB size before dump, login with mysql to the database and run:
SELECT table_schema "DB Name", sum( data_length + index_length ) / 1024 / 1024 "Data Base Size in MB" FROM information_schema.TABLES GROUP BY table_schema ;
It would list all databases and their size in MB.
Thanks to the MySQL Forums for the tip.