Created
April 10, 2015 20:00
-
-
Save hanksudo/f1365f3a764d3c8519cc to your computer and use it in GitHub Desktop.
PostgreSQL script to reassing db owner.
http://stackoverflow.com/questions/1348126/modify-owner-on-all-tables-simultaneously-in-postgresql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
YOUR_DB='mydb' | |
NEW_OWNER='new_owner' | |
for tbl in `psql -qAt -c "select tablename from pg_tables where schemaname = 'public';" $YOUR_DB`; | |
do | |
psql -c "alter table $tbl owner to $NEW_OWNER" $YOUR_DB; | |
done | |
for tbl in `psql -qAt -c "select sequence_name from information_schema.sequences where sequence_schema = 'public';" $YOUR_DB`; | |
do | |
psql -c "alter table $tbl owner to $NEW_OWNER" $YOUR_DB; | |
done | |
for tbl in `psql -qAt -c "select table_name from information_schema.views where table_schema = 'public';" $YOUR_DB`; | |
do | |
psql -c "alter table $tbl owner to $NEW_OWNER" $YOUR_DB; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment