Didik Prasetyo wrote on 07.05.2011 09:28:
> I want to ask how to make GRANT, where users can only perform SELECT
> on all the TABLE, in the database, which I have done the following
You might consider upgrading, because since 9.x you can do:
GRANT SELECT ON ALL TABLES IN SCHEMA public;
Thomas