I have a csv file of 144 millions different points with latitude and longitude values. Using the following SQL statement, it currently takes me more than 24 hours to upload the data:
CREATE TABLE pts(gid serial PRIMARY KEY, geom geometry(POINTZ, 3005));
Do you know if there is a way you could upload all the data faster?