Sequel Pro
Sequel Pro is a Mac app for managing MySQL databases (remote or local).
Import database
- Select the database.
- Click
File > Import
. - Select
{file}.sql
.
Check database size
SELECT table_schema "My databases", sum( data_length + index_length ) / 1024 / 1024 "Size (MB)" FROM information_schema.TABLES GROUP BY table_schema;