Re: Referencing created tables fails with message that

Поиск
Список
Период
Сортировка
От Ragnar Hafstað
Тема Re: Referencing created tables fails with message that
Дата
Msg-id 1109572405.16690.55.camel@localhost.localdomain
обсуждение исходный текст
Ответ на Referencing created tables fails with message that they do not exist!  (Tommy Svensson <tommy@tommysvensson.net>)
Список pgsql-general
On Sun, 2005-02-27 at 18:50 -0500, Tommy Svensson wrote:
> I have just installed Postgresql and tried it for the first time.
>
> One very serious problem I ran into was when actually trying to use
> created tables.
> Creating a simple table without any foreign keys works OK, but after
> creating the
> table it is not possible to do a select on it! I tried the following
> variants:
>
> SELECT * FROM <table>;
> SELECT * FROM public.<table>;
> SELECT * FROM <schema>.public.<table>;
>
> All result in the message "The relation <table> does not exist!" or "The
> relation public.<table> does not exist!".

you do not give actual examples, nor do you say how you created the
tables, but one possibility is that you ran into the case-folding
feature.

names are folded to lowercase unless quoted in doublequotes.

if you (or the client you use) created your table with
quoted upper-case or mixed case names, you must do the same
with the selects.

CREATE TABLE "Foo" (a text);
SELECT a from "Foo"; -- works
SELECT a from Foo; -- fails

the same applies to other names, such as columns.

gnari



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

Предыдущее
От: Tino Wildenhain
Дата:
Сообщение: Re: Referencing created tables fails with message that
Следующее
От: Jay Guerette
Дата:
Сообщение: Re: row numbering