Dustin Sallings ([EMAIL PROTECTED]) reports a bug with a severity of 3
The lower the number the more severe it is.

Short Description
RFE - Schema list from psql

Long Description
psql should have a \d type builtin to list schemas in the current database.

Sample Code
select 
        ns.nspname as Schema,
        u.usename as Owner,
        ns.nspacl as ACL
    from
        pg_namespace ns,
        pg_user u
    where
        u.usesysid = ns.nspowner
    order by
        ns.nspname


No file was uploaded with this report


---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?

http://archives.postgresql.org

Reply via email to