Re: data copy script

From: Ron St-Pierre <rstpierre(at)syscor(dot)com>
To: KeithW(at)narrowpathinc(dot)com, pgsql-novice <pgsql-novice(at)postgresql(dot)org>
Subject: Re: data copy script
Date: 2004-10-12 20:21:30
Message-ID: 416C3CCA.9000307@syscor.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Keith Worthington wrote:

>Hi All,
>
>I need to write a shell script that can be run by cron to automatically load
>data into a PostgreSQL database. I have been experimenting with the copy
>command in psql and I have a few questions.
>
>How can I run a copy command from a script?
>
You can either run the command directly from postgres' cron:
0 22 * * * /usr/local/pgsql/bin/pgsql -p
5432 -d imperial -c" COPY dataTable FROM 'fileName' WITH NULL AS '';"
or place the script inside of a file and have cron call it using
something like:
0 22 * * * sh
/usr/local/pgsql/myShellScript.sh

Ron

>What is the usage for the copy command when getting data from stdin?
>
>Kind Regards,
>Keith
>
>______________________________________________
>99main Internet Services http://www.99main.com
>
>
>---------------------------(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

Browse pgsql-novice by date

  From Date Subject
Next Message Antoine 2004-10-12 20:26:20 Re: possible to access a Linux box db from a Windows box
Previous Message Daniel Lerch 2004-10-12 20:09:56 Re: possible to access a Linux box db from a Windows box