I have a MySQL file, db.sql. I have tried to import it using:
db.sql
mysql -uroot -p[password] db < db.sql
All I get is a listing of m
Try this instead:
mysql -u root -p (prompts for password) use db; source db.sql