Search Postgresql Archives

Re: Generating sql to capture fully qualified table names???

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



smiley2211 escreveu:
Hello all,

I am using the query below to generate SQL code to grant access to objects -
how do I get this statement to PULL the fully qualified name
(schema.tablename)???

*****************
SELECT 'GRANT SELECT, INSERT, UPDATE, DELETE ON '  || relname ||
        ' TO newuser;'
FROM pg_class where relname !~ 'pg_*' AND relkind in ('r','v','S') ORDER BY relname;

*****************



SELECT 'GRANT SELECT, INSERT, UPDATE, DELETE ON '  ||
       pn.nspname || '.' || pc.relname ||' TO newuser;'
          FROM pg_class pc JOIN pg_namespace pn
               ON (pc.relnamespace = pn.oid)
WHERE pc.relname !~ 'pg_*' AND relkind in ('r','v','S')
  AND pn.nspname != 'information_schema'
ORDER BY relname;

Osvaldo

---------------------------(end of broadcast)---------------------------
TIP 2: Don't 'kill -9' the postmaster

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux