***CORRECTED***Well, first you need to change all your regions and cities Id's to make sure those Id's are not already in use by other countries.
The easiest way is to use Id's with a very high number (unlikely to be already used):
For instance:
(740441,'gb','Bedfordshire','bedfordshire',1),
=>
(1740441,'gb','Bedfordshire','bedfordshire',1),
To achieve that you can use this online tool:
http://textmechanic.com/text-tools/basic-text-tools/find-and-replace-text/1.- Extract oc_t_region and oc_t_city data to two separate files.
Note: You have here a "region" with an ID way too low that might be an issue:
(311,'gb','London - Central','london-central',1),
So the first step is to assign it a free ID in the range of the rest:
(740440,'gb','London - Central','london-central',1),
And then, using a text editor, replace all
'311' in oc_t_city with
'740440' (single quotes included)
2.- Process oc_t_region:
2a. Tick "Enable regular expression" and "Multiline matching".
2b. Paste your oc_t_region data on the 3rd textarea.
2c. "Find this" textarea =>
^\((\d+), 2d. "Replace with" textarea =>
(1$1, 2e. Click on "Find and replace text" button and replace your original code with the results
2.- Process oc_t_city:
3a. Tick "Enable regular expression" and "Multiline matching".
3b. Paste your oc_t_city data on the 3rd textarea.
3c. "Find this" textarea =>
^\((\d+),(\d+), 3d. "Replace with" textarea =>
($1,1$2, 3e. Click on "Find and replace text" button and replace your original code with the results
Import your modified .sql over the original database with all the other countries and everything should be all right.
Regards