Changes between Version 1 and Version 2 of Temperature download and load
- Timestamp:
- May 11, 2010 10:22:21 AM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Temperature download and load
v1 v2 22 22 == Create the table in Postgre to import to == 23 23 === Import the temperature tmp (temperature moyenne)=== 24 {{{ 25 DROP TABLE IF EXISTS temperature.tmp; 26 }}} 27 ["Create table tmp"] 28 {{{ 29 COPY temperature.tmn FROM 'D:/Celine Jouanin/Temperature/tmp.txt' USING DELIMITERS ';' CSV HEADER; 30 }}} 24 31 25 32 === Import the temperature tmx (temperature maximum) === 33 {{{ 34 DROP TABLE IF EXISTS temperature.tmx; 35 }}} 36 ["Create table tmx"] 37 {{{ 38 COPY temperature.tmx FROM 'D:/Celine Jouanin/Temperature/tmx.txt' USING DELIMITERS ';' CSV HEADER; 39 }}} 26 40 27 41 === Import the temperature tmn (temperature minimum) ===