-- Table: copydata -- DROP TABLE copydata; CREATE TABLE copydata ( temp_label real NOT NULL, temp_status text, temp_access text, temp_xtext text, temp_ytext text, temp_ztext text, temp_valid character(5), temp_manufactor character(20), temp_typegenerator text, temp_powerrated text, temp_rotordiam text, temp_hubheight text, temp_description text, temp_creator character(20), temp_powercurve text, temp_userlabel character(10), temp_result text, temp_efficiency text, temp_regcorrec text, temp_eqroughness text, temp_meanwindspeed text, temp_hpvalue integer, temp_calprod_wgs text, temp_actualwindcorrectenergy text, temp_goodnessfact text, "temp_a(sum)" text, "temp_k(sum)" text, "temp_a(0)" text, "temp_k(0)" text, "temp_f(0)" text, "temp_a(1)" text, "temp_k(1)" text, "temp_f(1)" text, "temp_a(2)" text, "temp_k(2)" text, "temp_f(2)" text, "temp_a(3)" text, "temp_k(3)" text, "temp_f(3)" text, "temp_a(4)" text, "temp_k(4)" text, "temp_f(4)" text, "temp_a(5)" text, "temp_k(5)" text, "temp_f(5)" text, "temp_a(6)" text, "temp_k(6)" text, "temp_f(6)" text, "temp_a(7)" text, "temp_k(7)" text, "temp_f(7)" text, "temp_a(8)" text, "temp_k(8)" text, "temp_f(8)" text, "temp_a(9)" text, "temp_k(9)" text, "temp_f(9)" text, "temp_a(10)" text, "temp_k(10)" text, "temp_f(10)" text, "temp_a(11)" text, "temp_k(11)" text, "temp_f(11)" text, temp_airdensity text, temp_displacement text, temp_projectnumber text, temp_date text, temp_place character(30), temp_id serial NOT NULL, temp_srid_text text, --temp_srid_num numeric, CONSTRAINT "K1_copydata" PRIMARY KEY (temp_id) ) WITH ( OIDS=FALSE ); ALTER TABLE copydata OWNER TO postgres;