Re: Not existing relations ...

Поиск
Список
Период
Сортировка
От Antonio Fiol Bonnín
Тема Re: Not existing relations ...
Дата
Msg-id 3C04E93C.42D660B7@w3ping.com
обсуждение исходный текст
Ответ на Not existing relations ...  ("linux" <rysiekll@vicom.ig.pl>)
Список pgsql-general
> DataBase=# \dt
>           List of relations
>        Name        | Type  |  Owner
> -------------------+-------+----------
>  FirstTable        | table | postgres
>  SecondTable       | table | postgres
>  ThirdTable        | table | postgres
> (3 rows)
>
> DataBase=# select * from FirstTable;
> ERROR:  Relation 'firsttable' does not exist

select * from "FirstTable";

will probably work.

You may also (if you do not need to access them from MSAccess any more)

ALTER TABLE "FirstTable" RENAME TO firsttable;

If you do not enclose the table names in double quotes ("), they are
converted to lower case, AFAIK.

Good luck!

Antonio



В списке pgsql-general по дате отправления:

Предыдущее
От: Mayan
Дата:
Сообщение: Starting PosgreSQL at bootup time
Следующее
От: wsheldah@lexmark.com
Дата:
Сообщение: Re: Starting PosgreSQL at bootup time