Created
November 27, 2013 04:48
-
-
Save ir4y/7670809 to your computer and use it in GitHub Desktop.
This file contains hidden or 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/bash | |
| #usage change_owner.sh database_name new_owner_name | |
| for tbl in `psql -qAt -c "select tablename from pg_tables where schemaname = 'public';" $1` ; do | |
| psql -c "alter table $tbl owner to $2" $1 ; | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment