From: | Oliver Elphick <olly(at)lfix(dot)co(dot)uk> |
---|---|
To: | Sondaar Roelof <roelof(dot)sondaar(at)scania(dot)com> |
Cc: | pgsql-sql(at)postgresql(dot)org |
Subject: | Re: COPY use in function with variable file name |
Date: | 2003-02-02 21:30:16 |
Message-ID: | 1044221415.32731.507.camel@linda.lfix.co.uk |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
On Wed, 2003-01-29 at 08:05, Sondaar Roelof wrote:
> Hello,
>
> I can't figure out how to make this work, or is not possible?
>
> In a function i would like to read a file.
> The file name is determined by a value from a table.
> However the COPY statement does not to accept this?
> I tried various forms of adding (single)-quotes but no luck.
>
> Anyone any ideas?
>
> Function:
> CREATE FUNCTION dnsdhcp_dns_raw()
> /* Fill table dns_raw with dns data */
> RETURNS integer AS '
> DECLARE
> r RECORD;
> ntw TEXT;
> BEGIN
> /* Do for all domain names */
> FOR r IN SELECT domain FROM network
> WHERE position(''n'' IN use) > 0 and ipaddress != ''127.0.0.0/24''
> LOOP
> ntw := ''/tmp/db.'' || r.domain;
> DELETE FROM dns_raw; /* Clear table */
> RAISE NOTICE ''Network: %'', ntw;
> COPY dns_raw FROM ntw DELIMITERS ''~''; /* Get the data */
Since ntw has variable content, you need to do an EXECUTE with the
command in a text string:
EXECUTE ''COPY dns_raw FROM '' || ntw || '' DELIMITERS ''''='''''';
(I hope that is the right number of quotes!)
> END LOOP;
> RETURN 0;
> END;'
> LANGUAGE 'plpgsql';
--
Oliver Elphick Oliver(dot)Elphick(at)lfix(dot)co(dot)uk
Isle of Wight, UK http://www.lfix.co.uk/oliver
GPG: 1024D/3E1D0C1C: CA12 09E0 E8D5 8870 5839 932A 614D 4C34 3E1D 0C1C
========================================
"Love not the world, neither the things that are in the
world. If any man love the world, the love of the
Father is not in him...And the world passeth away, and
the lust thereof; but he that doeth the will of God
abideth for ever." I John 2:15,17
From | Date | Subject | |
---|---|---|---|
Next Message | mail.luckydigital.com | 2003-02-02 21:45:35 | 7.2 functions that return multiple result sets? |
Previous Message | greg | 2003-02-02 20:25:37 | Re: Help with a query for charting |