From: Robert Haas on 11 Jan 2010 17:39 On Mon, Jan 11, 2010 at 4:18 PM, Jonas J <autoramajj(a)gmail.com> wrote: > I get the dbt2 project from the git tree. And i'm trying to make it work > with postgres. The problem is in one of the dbt2 shell scripts. Since I dont > understand of Shell Script Programing, here is my problem: (I will post the > script on the end) Well this isn't really a "help" list... especially not for shell-script programming... especially for shell-scripts that aren't even part of PostgreSQL. But having said that... I think you must be running a wonky version of sh. $ DBNAME=rhaas ./broken-script -d /tmp/fodao Loading customer table... COPY customer FROM '/tmp/fodao/customer.data' WITH NULL AS ''; ERROR: relation "customer" does not exist ....Robert -- Sent via pgsql-hackers mailing list (pgsql-hackers(a)postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-hackers
From: Jonas J on 14 Jan 2010 15:51 Thanks for your support, The problem was that Ubuntu links /bin/sh to /bin/dash and not /bin/bash, that makes some scripts crashing. I done the correct linking and everything works fine now. Also thanks for Mark Wong support, Jonas, 2010/1/11 Robert Haas <robertmhaas(a)gmail.com> > On Mon, Jan 11, 2010 at 4:18 PM, Jonas J <autoramajj(a)gmail.com> wrote: > > I get the dbt2 project from the git tree. And i'm trying to make it work > > with postgres. The problem is in one of the dbt2 shell scripts. Since I > dont > > understand of Shell Script Programing, here is my problem: (I will post > the > > script on the end) > > Well this isn't really a "help" list... especially not for > shell-script programming... especially for shell-scripts that aren't > even part of PostgreSQL. > > But having said that... I think you must be running a wonky version of sh. > > $ DBNAME=rhaas ./broken-script -d /tmp/fodao > Loading customer table... > COPY customer FROM '/tmp/fodao/customer.data' WITH NULL AS ''; > ERROR: relation "customer" does not exist > > ...Robert > > -- > Sent via pgsql-hackers mailing list (pgsql-hackers(a)postgresql.org) > To make changes to your subscription: > http://www.postgresql.org/mailpref/pgsql-hackers >
|
Pages: 1 Prev: Compression Library and Usages Next: [COMMITTERS] pgsql: Also update ChangerLogfile. |