top | item 46696660 (no title) philjohn | 1 month ago If you're doing large batch inserts, I've found using the COPY INTO the fastest way, especially if you use the binary data format so there's no overhead on the postgres server side. discuss order hn newest sirfz|1 month ago That doesn't work well with conflicts tho iirc nicwolff|1 month ago COPY INTO a temp table and INSERT INTO... SELECT FROM... ON CONFLICT UPDATE...
sirfz|1 month ago That doesn't work well with conflicts tho iirc nicwolff|1 month ago COPY INTO a temp table and INSERT INTO... SELECT FROM... ON CONFLICT UPDATE...
sirfz|1 month ago
nicwolff|1 month ago