Erik Jones <erik@xxxxxxxxxx> writes: > You can build and EXECUTE the ALTER TABLE commands in a function of a > few lines. With regards to removing the faulty permissions, will > REVOKE not work if the user doesn't exist in the system anymore (I > honestly don't know much about pre-8.0 behaviours)? If not take a > look at the aclitem functions in the pg_catalog schema (in psql: \df > *acl*), they may be what you're looking for. Yeah, getting rid of references to the user in ACL lists is going to be the main pain-in-the-neck here. Ownership is relatively easy to fix with direct updates on the catalog owner columns (and in 7.4 there's by definition nothing behind-the-scenes in dependency tables). I can't think of any equally easy fix for ACL references though, because the available SQL-level operations on aclitem arrays are pretty weak. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match