Re: accessing schemas

From: "Mark Wilson" <mark(at)mediasculpt(dot)com>
To: "Mark Kirkwood" <markir(at)paradise(dot)net(dot)nz>, "Doug McNaught" <doug(at)mcnaught(dot)org>
Cc: <pgsql-general(at)postgresql(dot)org>
Subject: Re: accessing schemas
Date: 2002-10-16 20:30:37
Message-ID: 011101c27552$e73910c0$3301a8c0@merl
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Sigh. Thanks guys.

----- Original Message -----
From: "Mark Kirkwood" <markir(at)paradise(dot)net(dot)nz>
To: "Mark Wilson" <mark(at)mediasculpt(dot)com>
Cc: <pgsql-general(at)postgresql(dot)org>
Sent: Thursday, October 17, 2002 9:10 AM
Subject: Re: [GENERAL] accessing schemas

> Mark,
>
> You need 7.3 for schema support (7.3 is currently in Beta2 I think)
>
> Best wishes
>
> Mark
> Mark Wilson wrote:
>
> > Hi all,
> >
> > I am using postgresql 7.2.1.
> >
> > I'm trying to create two separate objects with the same name, a table
> > and a view on the table. It seems like the best way to do this is to
> > create two schemas and have the view reference the table in the other
> > schema. But I have a problem. TO start with, it seems like psql is
> > creating another database instead of another schema (e.g. CREATE
> > SCHEMA TEST1; returns CREATE DATABASE). This is not the biggest
> > problem in the world, although I had thought that schemas would be
> > subordinate to databases (just like users :~)
> >
> > Secondly, when I run "\c test2 testuser" to *connect* to the schema I
> > want the view created in, where
> > running create view try1 as select * from test1.try1;
> > returns ERROR: parser: parse error at or near "."
> > How can I get the view in the test2 schema to reference the table in
> > schema test1?
> >
> > Thanks in advance,
> > Mark
>
>
>
>
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Marie G. Tuite 2002-10-16 20:33:18 Re: Pg_dumpall problem
Previous Message James Hall 2002-10-16 20:22:38 Re: Pg_dumpall problem