This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| -- Grant For Schema | |
| GRANT ALL PRIVILEGES ON SCHEMA pdg TO project1; | |
| -- Grant For Table | |
| GRANT ALL PRIVILEGES ON TABLE pdg.proposal TO project1; | |
| -- Grant For Sequence | |
| GRANT USAGE, SELECT ON SEQUENCE pdg.proposal_id_seq TO project1; | |
| -- Grant For View | |
| GRANT SELECT ON pdg.vw_program_hierarchy TO project1; | |
| -- //-- Source: http://www.postgresql.org/docs/8.3/static/sql-grant.html --// |
NewerOlder