I would like to create a pl/pgsql function that can select from a table even though users can't select from the table directly. For example, create a table and function that hits the table as the postgres user. Log in as another user and select function_name();. This fails because the user does not have permissions to select from the table. The issues is that I don't want the users to be able to select from the table but I would like to allow the user to call a stored procedure than can select from the table. Any idea how to do this? Any help is greatly appreciated. Thanks, Michael Here is an example. Create the following table and function as the postgres user: CREATE TABLE tst ( tmp_relname name, id smallint ); CREATE FUNCTION test() RETURNS int AS ' BEGIN DELETE FROM tst; return 1; END;' LANGUAGE 'plpgsql'; Login as another user Select test(); -- this will fail ---------------------------(end of broadcast)--------------------------- TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]