Re: tables invisible to pSQL

Поиск
Список
Период
Сортировка
От Hannu Krosing
Тема Re: tables invisible to pSQL
Дата
Msg-id 3BE6F3D9.656F941B@tm.ee
обсуждение исходный текст
Ответ на tables invisible to pSQL  ("Michael Coughlin" <MPCoughlin4@Home.com>)
Список 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 по дате отправления:

Предыдущее
От: "Michael Coughlin"
Дата:
Сообщение: Re: error: Relation 'tableName' does not exist ?
Следующее
От: Hannu Krosing
Дата:
Сообщение: Re: tables invisible to pSQL