| From: | Richard Huxton <dev(at)archonet(dot)com> |
|---|---|
| To: | Josef Springer <Josef(dot)Springer(at)JOOPS(dot)COM> |
| Cc: | pgsql-general(at)postgresql(dot)org |
| Subject: | Re: CreateTable --> schema not found |
| Date: | 2005-07-13 08:30:57 |
| Message-ID: | 42D4D141.9070000@archonet.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-general |
Josef Springer wrote:
> Hi,
>
> sorry, i am a PostgesSQL beginner:
>
> * I started the pgadmin tool as superuser.
> * Created the database /OfficeTalk/
> * Created the schema /OfficeTalk/ with same permissions as the template
> /pg_template_1/
Are you sure pg_template_1 isn't a database?
> * If i create the table /OfficeTalk.absent/ .... >>> * schema not found*
> * Creating the same table in schema /pg_template_1/ works fine.
If not, I'd suspect quoting issues. Fire up psql and do a \dn to see
what schemas are actually in your database - if they were quoted when
they were created they'll maintain their case, otherwise they'll be
lower-case.
Once you create something with mixed-case you'll always need to
reference it quoted, e.g.
CREATE TABLE "OfficeTalk".absent (
a int4,
...
);
--
Richard Huxton
Archonet Ltd
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Ropel | 2005-07-13 08:36:01 | Re: CreateTable --> schema not found |
| Previous Message | Nee.mem (倪明) | 2005-07-13 08:20:59 | Fw: Re: Windows version of PostgreSQL 8? |