Revision 8170
Added by Aaron Marcuse-Kubitza almost 12 years ago
import | ||
---|---|---|
6 | 6 |
map_table |
7 | 7 |
psql <<'EOF' |
8 | 8 |
SELECT functions.set_col_types('"SUBPLOT"', ARRAY[ |
9 |
('.STATECD' , 'integer')
|
|
10 |
, ('.UNITCD' , 'integer')
|
|
11 |
, ('.COUNTYCD', 'integer')
|
|
12 |
, ('.PLOT' , 'integer')
|
|
13 |
, ('.INVYR' , 'integer')
|
|
14 |
, ('.SUBP' , 'integer')
|
|
9 |
('STATECD' , 'integer') |
|
10 |
, ('UNITCD' , 'integer') |
|
11 |
, ('COUNTYCD', 'integer') |
|
12 |
, ('PLOT' , 'integer') |
|
13 |
, ('INVYR' , 'integer') |
|
14 |
, ('SUBP' , 'integer') |
|
15 | 15 |
]::functions.col_cast[]); |
16 | 16 |
|
17 |
SELECT functions.create_if_not_exists($$ALTER TABLE "SUBPLOT" ADD CONSTRAINT "SUBPLOT.ID" UNIQUE ("SUBPLOT.CN") $$);
|
|
17 |
SELECT functions.create_if_not_exists($$ALTER TABLE "SUBPLOT" ADD CONSTRAINT "SUBPLOT.ID" UNIQUE ("*SUBPLOT.CN") $$);
|
|
18 | 18 |
SELECT functions.create_if_not_exists($$ALTER TABLE "SUBPLOT" ADD CONSTRAINT "SUBPLOT.unique" UNIQUE ("STATECD", "UNITCD", "COUNTYCD", "PLOT", "INVYR", "SUBP")$$); |
19 | 19 |
SELECT functions.cluster_once('"SUBPLOT"', '"SUBPLOT.unique"'); |
Also available in: Unified diff
inputs/FIA/*/import: Updated column names to match map.csv