I have a sql file that I want to be dumped into a MySQL database that I have in Heroku using the ClearDB addon. When dumping in local I do the following:
mysql -u my_user -p mydatabasename < my_dump_file.sql
However, I don’t have any clue on how to dump it to the Heroku MySQL database. All I know is this address:
mysql://b5xxxxx7:37xxxad@us-cdbr-east.cleardb.com/heroku_xxxxxx?reconnect=true
But if I try to do:
mysql://b5xxxxx7:37d8faad@us-cdbr-east.cleardb.com/heroku_xxxxxx?reconnect=true < my_dump_file.sql
I get No such file or directory.
How am I supposed to do it?
You might be able to do something like this