1

I am using sqlyog in office. But at my home I have mysql gui. now how can I backup a database from sqlyog and restore it mysql gui? any idea please

Sumon Bappi
  • 1,937
  • 8
  • 38
  • 82

1 Answers1

3

Why over complicate things?

Create backup

mysqldump -u <user> -p<password> <database> > backup.sql

Restore

mysql -u <user> -p<password> <database> < backup.sql

Rob
  • 12,659
  • 4
  • 39
  • 56