Reputation: 65
I need to migrate WordPress data from one database to another the catch is, some of the information needs to change values. For example I have a meta_key table and I need to change all values "xyz" to "abc". Are there any GUI tools or even simple php scripts that can help?
For instance a class or function that takes in an array of current values and an array of what I would like to change them into...
A GUI tool would be preferred but any suggestion would be appreciated.
Upvotes: 1
Views: 809
Reputation: 2097
There is a GUI (PHPMyAdmin) for MySQL with great import and export options provided as standard service by most hosts with MySQL. There you can export any database or selected tables and then manually replace certain values (assuming that it is a short list of values you need to replace) just by using replace function of Notepad in the export file before you would import it into the other database.
For this you don't need any SQL knowledge, but you need: 1. PHPMyAdmin installed (usually provided by the hosting service) 2. Working knowledge of PHPMyAdmin export and import options (not rocket science)
Upvotes: 1