I want to export certain tables from one database and import them to another. The tables in question are used for my MediaWiki installation and are prefixed with "wiki_".
I do not have access to phpMyAdmin, but I am able to connect to the server via SSH. I'm guessing I need to use the mysqldump
command, but how do I specify that I only want to dump tables prefixed with "wiki_"?
You have to generate the list of tables you want to dump then act upon it.
or as a one liner
but you still get to enter the password twice.
Since
mysqldump
can't work with wildcards, you will have to specify the tables you want:Or you could specify the tables you don't want to export: