Re: COPY FROM - force a value

From: "Demel, Jeff" <Jeff(dot)Demel(at)JavelinDirect(dot)com>
To: <pgsql-sql(at)postgresql(dot)org>
Subject: Re: COPY FROM - force a value
Date: 2007-02-08 19:55:00
Message-ID: 136ED738BD4F1545B97E4AC06FF6370734C297@DMSP-MSG-EVS01.mail.pvt
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

That works like a charm. Thanks, Alvaro!

-Jeff

-----Original Message-----
From: Alvaro Herrera [mailto:alvherre(at)commandprompt(dot)com]
Sent: Thursday, February 08, 2007 1:22 PM
To: Demel, Jeff
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: [SQL] COPY FROM - force a value

Demel, Jeff wrote:
> Is there a way to force a value when you're doing a COPY FROM,
> importing a file into a table?
>
> Here's my query as it is now:
>
> COPY filetable (value1, value2, value3, value4, forcevalue1,
> forcevalue2)
> FROM 'C:\\InsertFiles\\thisfile.txt'
> WITH DELIMITER AS ' '
> ;
>
> The file only contains data for values 1 through 4. I'd like to
> insert values for the last two fields. This is what I had in mind,
> which doesn't work:
>
> COPY filetable (value1, value2, value3, value4, forcevalue1,
> forcevalue2)
> FROM 'C:\\InsertFiles\\thisfile.txt'
> WITH DELIMITER AS ' ',
> forcevalue1 = 1,
> forcevalue2 = 'this value'
> ;

I'd try setting a DEFAULT for those two columns using ALTER TABLE, then
the COPY FROM call excluding those columns, then removing the DEFAULT.
If you do it in a transaction block, no other transaction can be
molested by the default values, though they will be blocked of the table
during that transaction.

--
Alvaro Herrera
http://www.CommandPrompt.com/
The PostgreSQL Company - Command Prompt, Inc.
This email is intended only for the individual or entity to which it is addressed. This email may contain information that is privileged, confidential or otherwise protected from disclosure. Dissemination, distribution or copying of this e-mail or any attachments by anyone other than the intended recipient, or an employee or agent responsible for delivering the message to the intended recipient, is prohibited. If you are not the intended recipient of this message or the employee or agent responsible for delivery of this email to the intended recipient, please notify the sender by replying to this message and then delete it from your system. Any use, dissemination, distribution, or reproduction of this message by unintended recipients is strictly prohibited and may be unlawful.

Browse pgsql-sql by date

  From Date Subject
Next Message Jan Muszynski 2007-02-08 20:48:58 Re: metaphone and nysiis in postgres
Previous Message Jan Wieck 2007-02-08 19:30:39 Re: Differentiate Between Zero-Length String and NULLColumn Values