Here I need to insert huge records to my database tables. How can I do that in PostgreSQL 9.3 version?
Example:
/* Table creation */
create table tabletest(slno int,name text,lname text, address text, city text);
/* Records insertion */
insert into tabletest values -- Here i need to insert thousands of records in a bulk.
\copycommand. Something like:\copy tabletest from mydata.csv with delimiter ';'(read docs for details)