Does anyone how to import a geonames.org data into my database? The one i'm trying to import is http://download.geonames.org/export/dump/DO.zip, and my DB its a MySQL db.
feedback
|
|
I found the following by looking in the readme file included in the zip file you linked to in the section called "The main 'geoname' table has the following fields :" First create the database and table on your MySQL instance. The type of fields are given in each row of the section I just quoted the title of above.
After the table is created you can import the data from the file. The fields are delimited by tabs, rows as newlines.
| |||||||||||||
feedback
|