[GENERAL] my insertion script don't work

2009-05-19 Thread 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 00

Re: [GENERAL] my insertion script don't work

2009-05-19 Thread kelvin273
Solved...mine error...the script was create under windows and launched under linux...the file format was not corrent... Thanks :-) 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'