Re: CREATE VIEW form stored in database?

From: Mario Splivalo <mario(dot)splivalo(at)mobart(dot)hr>
To: Richard Huxton <dev(at)archonet(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: CREATE VIEW form stored in database?
Date: 2006-01-31 13:53:34
Message-ID: 1138715614.8587.5.camel@localhost.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Tue, 2006-01-31 at 12:30 +0000, Richard Huxton wrote:
> Mario Splivalo wrote:
> > When I create a view, I like to define it like this (just representing
> > the form here):
> [snip]
> > But, when I extracit it from postgres, it's somehow stored like this:
> [snip]
> > The later is much more hard to read, and when I need to change the view,
> > i get rash and stuff :)
> >
> > Is there a way to tell postgres NOT to format the 'source code' of my
> > views?
>
> I don't think it stores the "source code", but rather the structure of
> the underlying query. So I'm afraid you lose the spacing.
>
> I keep all my definitions in a set of files and read in updates with \i
> my_filename.sql from psql. That lets me keep all my spaces and comments.
>

Yes, I'm tied to the pgadmin3 for the moment, so there's nothing I could
do. It's a pain to develop a database such way.

Mike
--
Mario Splivalo
Mob-Art
mario(dot)splivalo(at)mobart(dot)hr

"I can do it quick, I can do it cheap, I can do it well. Pick any two."

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message George Weaver 2006-01-31 14:53:13 Re: CREATE VIEW form stored in database?
Previous Message Richard Huxton 2006-01-31 12:30:36 Re: CREATE VIEW form stored in database?