Forum Moderators: bakedjake
Is there a script for doing thing somewhere? Or, examples of the commands I'd issue through shell access I can see anywhere? A good reference for this somewhere?
Thanks!
I don't do this often, but the idea is using sqldump and sqlrestore. For example:
mysqldump [database name] > [dump file]
and
mysql [database name] < [dump file]
in a shell script, for example.
(I think; I don't do this often, as I said)
<edit>mysqlrestore doesn't exist, sorry</edit>