I'm using Putty to connect to Postgres 9.6.
I'm trying to export to csv five but I keep getting this error:
ERROR: relative path not allowed for COPY to file
This is my code:
COPY (select * from res_users) TO E'G:\\Test.csv' DELIMITER ',' CSV HEADER;