On Wed, Jan 8, 2020 at 9:31 AM Indirani Venkopa Chetty <ivchetty@xxxxxxxxxxxxxxxx> wrote:
Hi Wells,
I am trying import CSV file in to Amazon RDS PostgreSQL
I am getting following error , In internal PostgreSQL it works
"COPY with a file name instructs the PostgreSQL server to directly read from or write to a file." - i.e., Even had the server accepted your command it wasn't going to find your file.
Use either psql's "\copy" meta command or "COPY FROM STDIN" (search around for the needed syntax to make that work).
David J.