So, i was trying to use this command:
mysql -u USERNAME -p -D DATABASE > DB_BACKUP.sql
But it kept just freezing my terminal. However, ive seen this syntax recommended multiple times on the boards.
Finally i tried this:
mysqldump -u USERNAME -p DATABASE > DB_BACKUP.sql
And it worked. Im just a little confused, because i havent seen anyone else complain about the first syntax not working.
Can someone shed some light?
mysql -u USERNAME -p -D DATABASE > DB_BACKUP.sql
But it kept just freezing my terminal. However, ive seen this syntax recommended multiple times on the boards.
Finally i tried this:
mysqldump -u USERNAME -p DATABASE > DB_BACKUP.sql
And it worked. Im just a little confused, because i havent seen anyone else complain about the first syntax not working.
Can someone shed some light?
Comment