Skip to content

Instantly share code, notes, and snippets.

@SakuradaJun
Last active August 29, 2015 14:21
Show Gist options
  • Save SakuradaJun/f2683385e8fb0ada49f2 to your computer and use it in GitHub Desktop.
Save SakuradaJun/f2683385e8fb0ada49f2 to your computer and use it in GitHub Desktop.
Change OWNER on all table, postgres
-- Tables:
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
-- Sequences:
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
-- Views:
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