1

Can someone please tell me how to do a Simple Database Backup for MySQL Database on diff host (computer). I am trying to move my database from one host (server) to a new host (server)

techsjs2012
  • 1,737
  • 5
  • 25
  • 57

1 Answers1

1

If you just need to transfer a database between servers, using phpMyAdmin, you can use Export on the database on the source to generate a .SQL script, and then use Import on the target server to transfer it.

Alternatively, if the database is too big, you could use something like SQLDumper.

SchmitzIT
  • 9,227
  • 9
  • 65
  • 92