| From: | "A(dot) Kretschmer" <andreas(dot)kretschmer(at)schollglas(dot)com> |
|---|---|
| To: | pgsql-general(at)postgresql(dot)org |
| Subject: | Re: my insertion script don't work |
| Date: | 2009-05-19 13:34:39 |
| Message-ID: | 20090519133439.GA5175@a-kretschmer.de |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
In response to kelvin273 :
>
> 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
> Insert end
>
> It looks like that the filename argument is not ok...and the error is
> different because the filename (length of that) is different...can you help
> me, please?
looks okay, maybe the sql-files are wrong?
kretschmer(at)tux:~$ echo "select current_date" > date.sql
kretschmer(at)tux:~$ psql test -f date.sql
date
------------
2009-05-19
(1 row)
I'm sure, your files contains invalid sql-code.
Andreas
--
Andreas Kretschmer
Kontakt: Heynitz: 035242/47150, D1: 0160/7141639 (mehr: -> Header)
GnuPG-ID: 0x3FFF606C, privat 0x7F4584DA http://wwwkeys.de.pgp.net
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Richard Huxton | 2009-05-19 13:54:42 | Re: my insertion script don't work |
| Previous Message | Thomas Guettler | 2009-05-19 13:32:16 | Re: Get block of N numbers from sequence |