I'm trying to copy data from a 8GB txt file into a table in Postgres 13 using Windows 10 psql prompt. The command I'm using is:
\copy PERSON1 FROM 'D:\final3\FINAL\FINAL.txt' (DELIMITER('|'));
And I'm getting this error:
Can not stat file «D:/final3/FINAL/FINAL.txt»: value too large
Any idea of how to modify the max size of copy in psql13?