SELECT set_config('datestyle', 'DMY',false) ; 

DROP TABLE spots2 ;

CREATE TABLE spots2 (
    dxcall		text,
    FreqRX		text,
    FreqQSX		text,
    SpotTS		timestamp,  
    dxband		text,
    dxcountry		text,
    dxstat		text
);


CREATE INDEX sp_id2 ON spots2 (FreqRX) ;
CREATE INDEX ba_id2 ON spots2 (dxband) ;

VACUUM ;

GRANT ALL PRIVILEGES ON TABLE spots2 TO PUBLIC ;

ANALYZE VERBOSE spots2 ;
