Sequel Pro

Sequel Pro is a Mac app for managing MySQL databases (remote or local).

Import database

  1. Select the database.
  2. Click File > Import.
  3. 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;