Re: SQL statement form shell ?

From: czezz <czezz(at)o2(dot)pl>
To: =?UTF-8?Q?Scott_Whitney?=<swhitney(at)journyx(dot)com>, =?UTF-8?Q?Scott_Whitney?=<scott(at)journyx(dot)com>
Cc: pgsql-admin(at)postgresql(dot)org, raghavendra(dot)rao(at)enterprisedb(dot)com, payal(at)omniti(dot)co
Subject: Re: SQL statement form shell ?
Date: 2014-08-28 08:19:41
Message-ID: 6bc90f73.12c57c82.53fee61d.853f@o2.pl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

Hi,
I think I got it.
It seems that I need to indicate specific user name and only then the query works.
-bash-4.1$ psql -p 5472 -d fm_db_Server4 -U msuper -c "SELECT * FROM foo2;"
Im new to postgresql but I guess -U (user) also somehow defines tablespace where specific table is created.
Anyway, thank you all for your help and answers.
Cheers,
czezz
Dnia 27 sierpnia 2014 17:30 Scott Whitney &lt;scott(at)journyx(dot)com&gt; napisał(a):
There are a few things I would check. a) psql -p 5472 -d fm_db_Server4b) SELECT * from foo2;c) Do those _2_ statements work separately? That should prove that you're talking to the exact same connection/host/port you expect.d) psql -p 5472 -d fm_db_Server4 -c "SELECT * FROM foo2; So, step a&amp;b succeed, but step d fails? d) psql -p 5472 -d fm_db_Server4e) SELECT * from "foo2";
 If this doesn't work, "foo2," is not a valid relation. It's case-sensitive or some such. Once you can make the table name work within " " marks, THEN try from the command prompt like: f) psql -p 5472 -d fm_db_Server4 -c "SELECT * FROM \"foo2\" ; "  Im trying to execute simple query in shell.
This query works OK in PSQL client:
Server4=# SELECT * FROM foo2;
 However, for some reason I cannot execute it in shell. I try it like following:
 -bash-4.1$ psql -p 5472 -d fm_db_Server4 -c "SELECT * FROM foo2;"
ERROR:  relation "foo2" does not exist
LINE 1: SELECT * FROM foo2;
                      ^
 Any ideas what Im doing wrong ?
 BR,
czezz
 
--
Sent via pgsql-admin mailing list (pgsql-admin(at)postgresql(dot)org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-admin 
 Journyx, Inc.7600 Burnet Road #300
Austin, TX 78757
www.journyx.com p 512.834.8888 f 512-834-8858  Do you receive our promotional emails? You can subscribe or unsubscribe to those emails here. 

In response to

Browse pgsql-admin by date

  From Date Subject
Next Message Saravanan.S 2014-08-28 08:30:34 Table Partition
Previous Message Scott Whitney 2014-08-27 16:50:57 Re: SQL statement form shell ?