Changes between Version 5 and Version 6 of SpatiaLite
- Timestamp:
- 04/13/11 14:34:14 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SpatiaLite
v5 v6 17 17 To load all the tables of a schema from Postgres to Spatialite (with or without geometry) and without the views: 18 18 {{{ 19 $ ogr2ogr.exe --config PG_LIST_ALL_TABLES YES --config PG_SKIP_VIEWS YES -f "SQLite" mydb.sqlite -progress PG:"dbname='mydb' active_schema=myschema schemas=myschema host='localhost' port='5432' user='myuser' password='mypass' " -lco LAUNDER=yes -dsco SPATIALITE=yes -lco SPATIAL_INDEX=no 19 $ ogr2ogr --config PG_LIST_ALL_TABLES YES --config PG_SKIP_VIEWS YES -f "SQLite" mydb.sqlite -progress PG:"dbname='mydb' \ 20 active_schema=myschema schemas=myschema host='localhost' port='5432' user='myuser' password='mypass' " -lco LAUNDER=yes \ 21 -dsco SPATIALITE=yes -lco SPATIAL_INDEX=no 20 22 }}}