I've been trying the past half hour to import a database. I created one in my dashboard, and want to import my db from WF (after exporting from there and uploading to the OS server). I've tried the following commands vis SSH (italics in place of real info for this post):
mysql -p -u [mydbuser] [mydb] < [mydb].sql
and got "no such file or directory".
Then I tried this:
mysql -p -u [mydbuser] [mydb] < /path/to/server/ [dbfilename.sql]
and got "Usage: mysql [OPTIONS] [database]", with a log list of default options.
I tried a couple other commands as well, but no luck.
What am I missing?