How do I go about granting DML (SELECT,INSERT,UPDATE,DELETE) on all tables in a schema in PostgreSQL 8.4? I\'d also like this grant to persist for new table creation in the
If you have another user who have the DML privileges, it works in postgresql 8.x/9.x:
grant to testuser;
Hope it helps.