"Greg Sabino Mullane" <[EMAIL PROTECTED]> writes: > So as a general rule, the system tables should be considered a special > case as far as transactional activity? To be more precise, you are saying > that a system table must be locked in access exclusive mode before any > change is made to guarantee no problems occur?
No, I didn't say that --- I said that you need to lock the table whose schema you're trying to modify, to ensure that no one else is in the midst of accessing it using the old schema info. > So the oft-given advice of "UPDATE pg_class SET relhasrules = false" > is actually completely unsafe unless the entire referenced table is > completely locked, and unless you are using at least 8.2? I don't recall having ever given *that* advice to anyone. But yes, it's unsafe if there might be concurrent access to that table. The only context I've ever seen people use this sort of thing in is pg_restore --disable-triggers, and in that situation I think there's an implicit assumption that no one else is busy modifying the table you're restoring into. regards, tom lane ---------------------------(end of broadcast)--------------------------- TIP 3: Have you checked our extensive FAQ? http://www.postgresql.org/docs/faq