How can I grant privileges of all tables of a certain schema to a certain role in Postgres8.4?
In Postgres9.x, I can just do this:
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA mySchema TO myRole
It seems like Postgres8.4 doesn't support the ALL TABLE keyword. Is there an alternative to achieving the same result?