vote up 1 vote down star

How do I modify all tables in a Postgres database to change the owner?

I tried ALTER TABLE * OWNER TO new_owner but it doesn't like the star.

flag

1 Answer

vote up 2 vote down check

There is no such command in PostgreSQL. But you can work around it using method I described some time ago for GRANTs.

link|flag
Thank you, very nice article. I will keep this as a future reference. Using pgAdmin, I ended up backing up the DB, dropping/deleting the DB, temporarily granting new_owner the necessary rights, and then re-creating and restoring DB as the new_owner, with the "no owner" option checked in the restore window. This produced the results I was looking for with new_owner as the owner of everything. – Kai Aug 28 at 18:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.