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.
|
|
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. |
|||
|
|
|
|
There is no such command in PostgreSQL. But you can work around it using method I described some time ago for GRANTs. |
||
|