Re: Fwd: pgadmin doesn't see tables?

From: "Day, David" <dday(at)redcom(dot)com>
To: "David G(dot) Johnston" <david(dot)g(dot)johnston(at)gmail(dot)com>, Jim McNamara <thirdshiftcoder(at)gmail(dot)com>
Cc: "pgsql-novice(at)postgresql(dot)org" <pgsql-novice(at)postgresql(dot)org>
Subject: Re: Fwd: pgadmin doesn't see tables?
Date: 2016-06-14 19:57:50
Message-ID: 401084E5E73F4241A44F3C9E6FD79428037C1DEA42@exch-01
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

Not quite sure about your statement of the problem, however here are some thoughts that may help.

Possibly the confusion relates to the ‘search_path’ variable which determines which schemas your unqualified table select is searching.
Try “show search_path;”
Or
In your select statement explicitly reference the schema you believe the table to be in.

i..e select * from public.employess.

Also be aware that 0 row means that your table has no data, not that it does not exist.

Dave

From: pgsql-novice-owner(at)postgresql(dot)org [mailto:pgsql-novice-owner(at)postgresql(dot)org] On Behalf Of David G. Johnston
Sent: Tuesday, June 14, 2016 3:18 PM
To: Jim McNamara
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: [NOVICE] Fwd: pgadmin doesn't see tables?

On Tue, Jun 14, 2016 at 1:25 PM, Jim McNamara <thirdshiftcoder(at)gmail(dot)com<mailto:thirdshiftcoder(at)gmail(dot)com>> wrote:

hi -
in schema public my tables aren't listed pgadmin III.

here is some diagnostic info.

postgres=# alter table employee set schema public;
ERROR: table employee is already in schema "public"

postgres=# \dt
List of relations
Schema | Name | Type | Owner
--------+----------+-------+---------
public | employee | table | blaster
public | phone | table | blaster

postgres=# select * from employee;
id | fname | lname
----+-------+-------
(0 rows)

How come pgadmin can't see my table but the command line
tools can see the table?

thx. for any assistance - jim

This is likely to be operator error. Given you've shown zero data regarding pgAdminIII it is impossible to reasonably diagnose further.

David J.

In response to

Browse pgsql-novice by date

  From Date Subject
Next Message Jim McNamara 2016-06-15 10:44:16 pgadmin doesn't see tables - SOLVED
Previous Message David G. Johnston 2016-06-14 19:17:58 Re: Fwd: pgadmin doesn't see tables?