Re: Copy entire file as one field

From: "Warren Massengill" <warrenmassengill(at)hotmail(dot)com>
To: olly(at)lfix(dot)co(dot)uk
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: Copy entire file as one field
Date: 2002-12-04 18:16:49
Message-ID: F69An8hEAeuct8Pthhs00015a79@hotmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice


The revised version has the same result. If I change the name of the script
(another poster suggested avoiding the reserved word 'merge') there is a
different error message.

Thanks,
Warren

------------------------------------
#!/bin/bash

for f in `ls /home/kelly/message/*`
do
psql -d pg -c "INSERT INTO mail (message)
VALUES ('`cat $f`')"
done

-------------------------------------
[kelly(at)localhost pg]$ merge
merge: not enough arguments
merge: usage: merge [-AeEpqxX3] [-L lab [-L lab [-L lab]]] file1 file2 file3
merge aborted
--------------------------------------
[kelly(at)localhost pg]$ merge4
bash: merge4: command not found
--------------------------------------
>
>On Tue, 2002-12-03 at 19:48, Warren Massengill wrote:
> > My database is pg, the table is mail.
> > The small text files are in /home/kelly/message/.
> > The bash shell script is merge.
> >
> > Somehow I failed to translate your instructions...
> >
> > -----------------------------------------------------
> > #!/bin/bash
> >
> > for f in `ls /home/kelly/message*`
> ^^^^^^
> message/*
>
> > do
> > psql -d pg -c "INSERT INTO mail (message)
> > VALUES ('`cat $f`')"
> > done
>
>Your files are in that directory, so the wild card must be too.
>--
>Oliver Elphick Oliver(dot)Elphick(at)lfix(dot)co(dot)uk

_________________________________________________________________
The new MSN 8: smart spam protection and 2 months FREE*
http://join.msn.com/?page=features/junkmail

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Devinder K Rajput 2002-12-04 18:30:52 Re: Copy entire file as one field
Previous Message Dmitri Touretsky 2002-12-04 18:15:51 Very slow performance - addition