I am trying to dump this data into Postgres:
COPY address_types (game_id, device_type) FROM stdin;
1 Ps3
2 Xbox
3 Other
\.
But I always get this error:
[Err] ERROR: syntax error at or near "1"
LINE 2: 1 Ps3
^
Any ideas what might be wrong?
pg_dump
? If yes, maybe the tab character got lost somehow in the copy & paste process. – a_horse_with_no_name Mar 15 at 15:55