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,849
  • 6
  • 36
  • 74

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,432
  • 4
  • 36
  • 54