Re: Why can't I see the definition of my relations

Поиск
Список
Период
Сортировка
От Andrew Falanga
Тема Re: Why can't I see the definition of my relations
Дата
Msg-id 5ad15592-adae-4b13-9c74-0f06b34f6100@c10g2000yqi.googlegroups.com
обсуждение исходный текст
Ответ на Why can't I see the definition of my relations  (Andrew Falanga <af300wsm@gmail.com>)
Ответы Re: Why can't I see the definition of my relations  (Adrian Klaver <adrian.klaver@gmail.com>)
Список pgsql-general
On Jul 13, 9:12 am, adrian.kla...@gmail.com (Adrian Klaver) wrote:
> On Monday 12 July 2010 10:18:07 pm A. Kretschmer wrote:
>
>
>
>
>
> > No, the reason is another:
>
> > test=# create table "Stone"(id serial);
> > NOTICE:  CREATE TABLE will create implicit sequence "Stone_id_seq" for
> > serial column "Stone.id" CREATE TABLE
> > test=*# \d Stone
> > Did not find any relation named "Stone".
> > test=*# \d "Stone"
> >                           Table "public.Stone"
> >  Column |  Type   |                      Modifiers
> > --------+---------+------------------------------------------------------
> >  id     | integer | not null default nextval('"Stone_id_seq"'::regclass)
>
> > You have to use the " if the table-name contains upper-case characters.
>
> > Andreas
>
> Just for completeness, it is the quoted table name that causes the case
> sensitivity. If you do as below than the table name is folded to lower case.
>
> test=> create table Stone(id serial);
> NOTICE:  CREATE TABLE will create implicit sequence "stone_id_seq" for serial
> column "stone.id"
> CREATE TABLE
> test=> \d Stone
>                          Table "public.stone"
>  Column |  Type   |                     Modifiers
> --------+---------+----------------------------------------------------
>  id     | integer | not null default nextval('stone_id_seq'::regclass)
>
> --
> Adrian Klaver
> adrian.kla...@gmail.com
>
> --
> Sent via pgsql-general mailing list (pgsql-gene...@postgresql.org)
> To make changes to your subscription:http://www.postgresql.org/mailpref/pgsql-general

Thank you both for you help.  I look forward to accessing the table
tonight when I get home.

For my own sake, would there happen to be any documentation on-line
that I could read up on regarding this?  (The PostgreSQL website
perhaps?  Is this discussed in their documentation?)

Thanks,
Andy

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

Предыдущее
От: Stefan Kaltenbrunner
Дата:
Сообщение: Re: NASA needs Postgres - Nagios help
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: Why can't I see the definition of my relations