| From: | Richard Huxton <dev(at)archonet(dot)com> |
|---|---|
| To: | kelvin273 <mtraina(at)inwind(dot)it> |
| Cc: | pgsql-general(at)postgresql(dot)org |
| Subject: | Re: my insertion script don't work |
| Date: | 2009-05-19 13:54:42 |
| Message-ID: | 4A12BA22.9000409@archonet.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
kelvin273 wrote:
> Hi all,
> i'm using postgresql 8.3 and i have create a very simple script for insert
> data into database (because i'm testing it, i create and drop/mod frequently
> the tables).
> My script is this:
>
> #!/bin/bash
> echo "Insert start"
> psql -U myself -d test -f 000_ins_users.sql
> psql -U myself -d test -f 001_ins_profile.sql
> psql -U myself -d test -f 002_ins_user_prof.sql
> echo "Insert end"
>
> but i receive this error when i launch this:
>
> Insert start
> : Invalid argument
> : Invalid argumentl
> : Invalid argumentsql
I suspect a stray carriage-return (\r) somewhere. I think the "Invalid
argument" is at the end of the message and is preceded by the
carriage-return.
Did you edit the .sql files in Windows perhaps?
--
Richard Huxton
Archonet Ltd
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Sam Mason | 2009-05-19 14:12:03 | Re: INTERVAL data type and libpq - what format? |
| Previous Message | A. Kretschmer | 2009-05-19 13:34:39 | Re: my insertion script don't work |