Changes between Version 10 and Version 11 of HowToMoveFromMySQLToPostgres


Ignore:
Timestamp:
Jul 13, 2009, 12:34:15 AM (15 years ago)
Author:
heikki
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • HowToMoveFromMySQLToPostgres

    v10 v11  
    117117 * Primary key column {{{id}}} gets called {{{ogc_fid}}} in Postgres
    118118
    119 The {{{wkb_geometry}}} columns can be fixed using this sql (thanks Thijs Brentjens) :
     119The {{{wkb_geometry}}} columns can be fixed (i.e. removed) using this sql (thanks Thijs Brentjens) :
    120120
    121121{{{
     
    152152}}}
    153153
     154TODO how to fix the IDs
     155TODO how to handle Postgres / MySQL on different machines
     156TODO should we change the !GeoNetwork Postgress create-db script to match ogr2ogr's definition ?
     157
     158In case the {{{ogr2ogr}}} command above gave you errors related to encodings, you might try this (Thijs Brentjens) :
     159
     160{{{
     161alter database geonetworktest set client_encoding=latin1;
     162}}}
    154163
    155164