
DROP TABLE clusters ;

CREATE TABLE clusters (
   clcall		text,
   cldirection		text,
   clport		text,
   clcomment		text
);
 
COPY clusters FROM '/home/pino/GAMBAS/LOG/clusters.db' DELIMITER ',' NULL AS '' ;


CREATE INDEX cluster_id ON clusters (clcall) ;

VACUUM ;

GRANT ALL PRIVILEGES ON TABLE clusters TO PUBLIC ;

ANALYZE VERBOSE clusters ;

SELECT * FROM clusters  ;
