Re: copy command

From: "ARP" <arnaud(dot)mlist1(at)free(dot)fr>
To: "Duncan Adams (DNS)" <duncan(dot)adams(at)vcontractor(dot)co(dot)za>, "postgres sql list" <pgsql-sql(at)postgresql(dot)org>
Subject: Re: copy command
Date: 2002-04-25 18:34:09
Message-ID: 008401c1ec87$ced6ac80$0100a8c0@arp.homelinux.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

I think you need the quote around the file name since it's not a keyword and it's text.
Then your dns.txt file needs to be formated correctly, especially concerning the separator : by default I think TABs are used and \N is used to say NULL. You can go aver that with USING DELIMITERS ';' for example and WITH NULL AS '' if your dns.txt look like this :
aeomc04;10.121.4.157
somcmd1;10.121.23.57
aeomc05;10.121.4.162
gsmomc6;10.121.4.154

hope this helps
Arnaud

----- Original Message -----
From: "Duncan Adams (DNS)" <duncan(dot)adams(at)vcontractor(dot)co(dot)za>
To: "postgres sql list" <pgsql-sql(at)postgresql(dot)org>
Sent: Thursday, April 25, 2002 4:53 PM
Subject: [SQL] copy command

hi all

how do you use the copy command
call me dumb, i have RTFM but i don't seem to get it.

an exstract from my dns.txt file.

aeomc04 10.121.4.157
somcmd1 10.121.23.57
aeomc05 10.121.4.162
gsmomc6 10.121.4.154

wire_dev=> copy dns_ip from dns.txt
wire_dev-> ;
ERROR: parser: parse error at or near "dns"
wire_dev=> copy dns_ip from /database/pgsql/dns.txt
wire_dev-> ;
ERROR: parser: parse error at or near "/"
wire_dev=>
wire_dev=> \d dns_ip
Table "dns_ip"
Attribute | Type | Modifier
-----------+-----------------------+----------
dns | character varying(32) |
ip | character varying(32) |

thanx

---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
message can get through to the mailing list cleanly

In response to

  • copy command at 2002-04-25 14:53:06 from Duncan Adams (DNS)

Browse pgsql-sql by date

  From Date Subject
Next Message Bill Cunningham 2002-04-25 18:51:03 Re: HAVING - clause
Previous Message Brubaker, Shane 2002-04-25 17:25:50 Collection of PostgreSQL Performance Tips