| 1 | Download on ccm on the web site ¶ |
| 2 | |
| 3 | You can download the ROE data and add it into Postgres with the geobs_sans_image_2010_01_08.backup (EDAData/dataEDAcommun/barrage/geobs_sans_image_2010_01_08.backup). |
| 4 | |
| 5 | |
| 6 | Add data into Postgres |
| 7 | |
| 8 | [[Color(,red,A VERIFIER !)]] |
| 9 | {{{ |
| 10 | REM================================================ |
| 11 | REM Copier coller les commandes dans une invite de commande |
| 12 | - Ouvrir une fenêtre d'Invite de commandes : |
| 13 | 1) Cliquez sur Démarrer/Exécuter... |
| 14 | 2) Dans la zone de texte Ouvrir : saisissez : cmd et validez par OK. |
| 15 | REM================================================ |
| 16 | |
| 17 | REM================================================ |
| 18 | REM Script pour Céline (la connexion change - p 5432) |
| 19 | REM================================================ |
| 20 | REM Création de la base de donnée |
| 21 | REM correspond au point 1 de http://62.160.92.241:8066/trac/wiki/CookBook%20shptopostgres |
| 22 | C:\"Program Files"\PostgreSQL\8.4\bin\psql -p 5432 -U postgres -c "CREATE DATABASE ROE WITH OWNER = postgres template=postgis ENCODING = 'UTF8' LC_COLLATE = 'French_France.1252' LC_CTYPE = 'French_France.1252' CONNECTION LIMIT = -1;" |
| 23 | cd C:\Program Files\PostgreSQL\8.4\bin\ |
| 24 | pg_restore.exe --host localhost --port 5432 --username postgres --dbname "ROE" --verbose "C:\Celine Jouanin\workspace\EDAData\dataEDAcommun\barrage\geobs_sans_image_2010_01_08.backup" |
| 25 | |
| 26 | REM================================================ |
| 27 | REM Script pour Cédric (la connexion change - p 5433) |
| 28 | REM================================================ |
| 29 | REM Création de la base de donnée |
| 30 | REM correspond au point 1 de http://62.160.92.241:8066/trac/wiki/CookBook%20shptopostgres |
| 31 | C:\"Program Files"\PostgreSQL\8.4\bin\psql -p 5432 -U postgres -c "CREATE DATABASE ROE WITH OWNER = postgres template=postgis ENCODING = 'UTF8' LC_COLLATE = 'French_France.1252' LC_CTYPE = 'French_France.1252' CONNECTION LIMIT = -1;" |
| 32 | cd C:\Program Files\PostgreSQL\8.4\bin\pg_restore.exe --host localhost --port 5432 --username postgres --dbname "ROE" --verbose "C:\Celine Jouanin\workspace\EDAData\dataEDAcommun\barrage\geobs_sans_image_2010_01_08.backup" |
| 33 | }}} |