| 1 | back to first page[..][[BR]] |
| 2 | back to ["RHT"][[BR]] |
| 3 | |
| 4 | = Integrating BDCarthage2011 into eda2.0_RHT = |
| 5 | {{{ |
| 6 | ---Céline |
| 7 | D: |
| 8 | cd D:\CelineJouanin\BDCarthage2011 |
| 9 | C:\"Program Files"\PostgreSQL\8.4\bin\psql -d eda2.0_RHT -U postgres -p 5432 -f COURS_D_EAU.sql |
| 10 | C:\"Program Files"\PostgreSQL\8.4\bin\psql -d eda2.0_RHT -U postgres -p 5432 -f HYDROGRAPHIE_SURFACIQUE.sql |
| 11 | C:\"Program Files"\PostgreSQL\8.4\bin\psql -d eda2.0_RHT -U postgres -p 5432 -f LAISSE.sql |
| 12 | C:\"Program Files"\PostgreSQL\8.4\bin\psql -d eda2.0_RHT -U postgres -p 5432 -f NOEUD_HYDROGRAPHIQUE.sql |
| 13 | C:\"Program Files"\PostgreSQL\8.4\bin\psql -d eda2.0_RHT -U postgres -p 5432 -f POINT_EAU_ISOLE.sql |
| 14 | C:\"Program Files"\PostgreSQL\8.4\bin\psql -d eda2.0_RHT -U postgres -p 5432 -f REGION_HYDROGRAPHIQUE.sql |
| 15 | C:\"Program Files"\PostgreSQL\8.4\bin\psql -d eda2.0_RHT -U postgres -p 5432 -f SECTEUR.sql |
| 16 | C:\"Program Files"\PostgreSQL\8.4\bin\psql -d eda2.0_RHT -U postgres -p 5432 -f SOUS_SECTEUR.sql |
| 17 | C:\"Program Files"\PostgreSQL\8.4\bin\psql -d eda2.0_RHT -U postgres -p 5432 -f TRONCON_HYDROGRAPHIQUE.sql |
| 18 | C:\"Program Files"\PostgreSQL\8.4\bin\psql -d eda2.0_RHT -U postgres -p 5432 -f ZONE_HYDROGRAPHIQUE.sql |
| 19 | |
| 20 | |
| 21 | create schema bd_carthage2011; |
| 22 | alter table cours_d_eau set schema bd_carthage2011; |
| 23 | alter table hydrographie_surfacique set schema bd_carthage2011; |
| 24 | alter table laisse set schema bd_carthage2011; |
| 25 | alter table noeud_hydrographique set schema bd_carthage2011; |
| 26 | alter table point_eau_isole set schema bd_carthage2011; |
| 27 | alter table region_hydrographique set schema bd_carthage2011; |
| 28 | alter table secteur set schema bd_carthage2011; |
| 29 | alter table sous_secteur set schema bd_carthage2011; |
| 30 | alter table troncon_hydrographique set schema bd_carthage2011; |
| 31 | alter table zone_hydrographique set schema bd_carthage2011; |
| 32 | }}} |