- To get the values
SELECT * FROM wp_options WHERE option_name LIKE 'options_%'"
- Export as SQL
- Remove the ID column from the INSERT statements
- Then remove the old values by running
DELETE FROM wp_options WHERE option_name LIKE 'options_%'"
- And finally run the exported insert statement! Voila!