I've got a large mysql DB... A few thousand records... Will this be an issue when I make the move to a new webhost? I've heard all you have to do is a "mysql dump" somehow, then run the "dumped" file at your new host; is it really that easy? Thanks for any help
Yeah it is usually that easy If you have phpMyAdmin you can just export your tables or the whole database and then import it on the new db and it will be an exact copy of the old one.
yes, it;s easy 1. make a db dump (db backup) 2. restore it in new host it's better to make it on linux prompt with mysql command. phpmysqladmin has some limits about db file size on import.
A few thousand records is not much, but it does not give any indication of the db size. You can see the size in phpmyadmin. When you take a backup in phpmyadmin, if the size of the gzip backup is upto 2 MB, you can import using phpmyadmin. Otherwise you can use a script "bigdump", to import larger dbs.