Re: tables invisible to pSQL - Mailing list pgsql-interfaces

From Hannu Krosing
Subject Re: tables invisible to pSQL
Date
Msg-id 3BE6F3D9.656F941B@tm.ee
Whole thread Raw
In response to tables invisible to pSQL  ("Michael Coughlin" <MPCoughlin4@Home.com>)
List pgsql-interfaces
Michael Coughlin wrote:
> 
> I've noticed that tables, that I created with pgAccess or Microsoft Access,
> are NOT visible in
> pSQL.
> 
> Any attempt in psql to SELECT * FROM tableName;
> results in the error:
>     "Relation 'tableName' does not exist."

Try 

#> SELECT * FROM "tableName";

as Access creates the tables eaxctly as you name them, you must use ""

using SELECT * FROM tableName; triest to access table "tablename"

------------
Hannu


pgsql-interfaces by date:

Previous
From: "Michael Coughlin"
Date:
Subject: Re: error: Relation 'tableName' does not exist ?
Next
From: Hannu Krosing
Date:
Subject: Re: tables invisible to pSQL