Hi,<div><br></div><div>I am trying to import this shapefile into a database on my new server: </div><div><a href="http://sedac.ciesin.columbia.edu/povmap/downloads/ds_global/imr_shapefile.zip">http://sedac.ciesin.columbia.edu/povmap/downloads/ds_global/imr_shapefile.zip</a></div>
<div><br></div><div>While this was no problem on my old server running Windows Vista, i now have problems on my Ubuntu Server.</div><div>My last server had the LC_COLLATE AND LC_CTYPE blank, while the new Linux has en_US.UTF-8 which seems to create the problems.</div>
<div>I tried creating a new database on the new server with blank COLLATE and CTYPE, but it would not accept blank.</div><div><br></div><div>Any ideas?</div><div><br>Thanks,</div><div>Andreas</div><div><br></div><div>The old database had the following settings on Enconding:</div>
<div><div>CREATE DATABASE newpg</div><div>  WITH OWNER = -----</div><div>       ENCODING = 'UTF8'</div><div>       TABLESPACE = pg_default</div><div>       LC_COLLATE = ''</div><div>       LC_CTYPE = ''</div>
<div>       CONNECTION LIMIT = -1;</div></div><div><br></div><div>The database on the new server has the following:</div><div>CREATE DATABASE priogrid</div><div><div>  WITH OWNER = -----</div><div>       ENCODING = 'UTF8'</div>
<div>       TABLESPACE = pg_default</div><div>       LC_COLLATE = 'en_US.UTF-8'</div><div>       LC_CTYPE = 'en_US.UTF-8'</div><div>       CONNECTION LIMIT = -1;</div></div>