> On Thu, 24 Aug 2000, Roderick A. Anderson wrote:
>
> > On Thu, 24 Aug 2000, John McKown wrote:
> >
> > > I think that you can do this using the COPY verb in psql.
> > >
> > > COPY table FROM file USING DELIMITERS ',';
> >
> > Be aware you will probably have to start psql as the postgres
(sup
On Thu, 24 Aug 2000, Roderick A. Anderson wrote:
> On Thu, 24 Aug 2000, John McKown wrote:
>
> > I think that you can do this using the COPY verb in psql.
> >
> > COPY table FROM file USING DELIMITERS ',';
>
> Be aware you will probably have to start psql as the postgres (superuser)
> to use t
On Thu, 24 Aug 2000, John McKown wrote:
> I think that you can do this using the COPY verb in psql.
>
> COPY table FROM file USING DELIMITERS ',';
Be aware you will probably have to start psql as the postgres (superuser)
to use the COPY command.
But ... the \copy version is usable by normal us
John McKown wrote:
>
> I think that you can do this using the COPY verb in psql.
>
> COPY table FROM file USING DELIMITERS ',';
>
> Just be sure that the order of the data in the file is the same as the
> order of the variables in the table.
>
> John
>
> On Wed, 23 Aug 2000, Jake wrote:
> > D
I think that you can do this using the COPY verb in psql.
COPY table FROM file USING DELIMITERS ',';
Just be sure that the order of the data in the file is the same as the
order of the variables in the table.
John
On Wed, 23 Aug 2000, Jake wrote:
> Does any one know if this is possible, and