Re: Are we losing momentum? - Mailing list pgsql-hackers

From Shridhar Daithankar
Subject Re: Are we losing momentum?
Date
Msg-id 200304231145.58929.shridhar_daithankar@nospam.persistent.co.in
Whole thread Raw
In response to Re: Are we losing momentum?  ("scott.marlowe" <scott.marlowe@ihs.com>)
Responses Re: Are we losing momentum?  (Rod Taylor <rbt@rbt.ca>)
Re: Are we losing momentum?  ("scott.marlowe" <scott.marlowe@ihs.com>)
List pgsql-hackers
On Tuesday 22 April 2003 22:47, scott.marlowe wrote:
> To the Windows guys, how do I tell them to just create a view
> encapsulating:
>
> SELECT c.relname as "Name",
>   CASE c.relkind WHEN 'r' THEN 'table' WHEN 'v' THEN 'view' WHEN 'i' THEN
> 'index' WHEN 'S' THEN 'sequence' WHEN 's' THEN 'special' END as "Type",
>   u.usename as "Owner"
> FROM pg_class c LEFT JOIN pg_user u ON c.relowner = u.usesysid
> WHERE c.relkind IN ('r','v','S','')
>   AND c.relname !~ '^pg_'
> ORDER BY 1;
>
> if they want a list of the tables, sequences, views and indexes in
> postgresql.

Have you used TORA any times? It does support postgresql and it does it pretty 
well..
Shridhar



pgsql-hackers by date:

Previous
From: "Andrew Dunstan"
Date:
Subject: Re: Are we losing momentum?
Next
From: Andreas Pflug
Date:
Subject: 7.4 acl: what is a*r*w*d*?