Re: How to pipe the psql copy command to Unix 'Date' command

From: SHARMILA JOTHIRAJAH <sharmi_jo(at)yahoo(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: General postgres mailing list <pgsql-general(at)postgresql(dot)org>
Subject: Re: How to pipe the psql copy command to Unix 'Date' command
Date: 2009-02-19 17:40:49
Message-ID: 413151.4447.qm@web110705.mail.gq1.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

--- On Thu, 2/19/09, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:

> From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
> Subject: Re: [GENERAL] How to pipe the psql copy command to Unix 'Date' command
> To: sharmi_jo(at)yahoo(dot)com
> Cc: "General postgres mailing list" <pgsql-general(at)postgresql(dot)org>
> Date: Thursday, February 19, 2009, 12:31 PM
> SHARMILA JOTHIRAJAH <sharmi_jo(at)yahoo(dot)com> writes:
> > Hi,
> > I want to find the time taken by this process
> ...retrieving data from oracle database using java and
> copying that to postgres using copy.
> > So I need something like this
>
> > Start_Time|java testCode ...|psql -c "copy dummy
> from stdin with delimiter ',' null
> 'NULL'" test| End_time
>
> time java testCode ...|psql -c "copy dummy from stdin
> with delimiter ',' null 'NULL'" test
>
> Or do you really insist on doing the timestamp subtraction
> by hand?
>
>
No...I would definitely prefer to get the time elapsed between the start of the java program and the end of the copy command... Is that possible ? If not at least the start and the end time so tht i can do the calculation myself

Thanks
Sharmila

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2009-02-19 17:46:14 Re: Aliasing syntax question
Previous Message Tom Lane 2009-02-19 17:31:16 Re: How to pipe the psql copy command to Unix 'Date' command