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

I tried ALTER TABLE * OWNER TO new_owner but it doesn't support the asterix syntax.

link|improve this question

Is there a way for you to reconsider the answer? – Johan Dahlin Mar 20 at 18:42
feedback

8 Answers

up vote 50 down vote accepted

Since you're changing the owner ship for all tables, you likely want views and sequences too. Here's what I did:

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

You could probably DRY that up a bit since the alter statements are identical for all three.

link|improve this answer
I wish I could favorite answers. – jcm Jul 1 '11 at 1:37
+1 Thanks Alex. I've created a little bash script based on your answer, available at gist.github.com/2482969 – Yoav Aner Apr 24 at 19:33
feedback

If you want to do it in one sql statement, you need to define an exec() function as mentioned in http://wiki.postgresql.org/wiki/Dynamic_DDL

CREATE FUNCTION exec(text) returns text language plpgsql volatile
  AS $f$
    BEGIN
      EXECUTE $1;
      RETURN $1;
    END;
$f$;

Then you can execute this query, it will change the owner of tables, sequences and views:

SELECT exec('ALTER TABLE ' || quote_ident(s.nspname) || '.' ||
            quote_ident(s.relname) || ' OWNER TO $NEWUSER')
  FROM (SELECT nspname, relname
          FROM pg_class c JOIN pg_namespace n ON (c.relnamespace = n.oid) 
         WHERE nspname NOT LIKE E'pg\\_%' AND 
               nspname <> 'information_schema' AND 
               relkind IN ('r','S','v') ORDER BY relkind = 'S') s;

$NEWUSER is the postgresql new name of the new owner.

In most circumstances you need to be superuser to execute this. You can avoid that by changing the owner from your own user to a role group you are a member of.

Thanks to RhodiumToad on #postgresql for helping out with this.

link|improve this answer
1  
This is much more useful since it changes ownership of the entire schema, including functions, indexes, sequences, etc.. Thank you! – bilygates Oct 31 '11 at 20:18
feedback

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

link|improve this answer
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 '09 at 18:23
feedback

I recently had to change the ownership of all objects in a database. Although tables, views, triggers and sequences were somewhat easily changed the above approach failed for functions as the signature is part of the function name. Granted, I have a MySQL background and am not that familiar with Postgres.

However, pg_dump allows you to dump just the schema and this contains the ALTER xxx OWNER TO yyy; statements you need. Here is my bit of shell magic on the topic

pg_dump -s YOUR_DB | grep -i 'owner to' | sed -e 's/OWNER TO .*;/OWNER TO NEW_OWNER;/i' | psqL YOUR_DB
link|improve this answer
feedback

This: http://archives.postgresql.org/pgsql-bugs/2007-10/msg00234.php is also a nice and fast solution:

select 'alter table '|| tablename ||' owner to ;' from pg_tables where schemaname = 'public';

copy the alter table statements and run it.

link|improve this answer
A very nice solution! – jb. yesterday
feedback

pg_dump as insert statements pg_dump -d -O database filename -d ( data as inserts ) -O ( capital O is no owner )

then pipe the backup file back in to PostgreSQL using: psql -d database -U username -h hostname < filename

As there is no owner included then all of the create table, schema, etc.. are created under the login user you specify...

I have read this could be a good approach for migrating between PostgreSQL versions as well.

link|improve this answer
feedback

pg_dump: server version: 8.4.7 vs pg_dump version: 8.3.14 might be an issue other than that I tried the example above it works well.

link|improve this answer
feedback

Starting in PostgreSQL 9.0, you have the ability to GRANT [priv name] ON ALL [object type] IN SCHEMA where [priv name] is the typical SELECT, INSERT, UPDATE, DELETE, etc and [object type] can be one of:

  • TABLES
  • SEQUENCES
  • FUNCTIONS

PostgreSQL's docs on GRANT and REVOKE go in to more detail regarding this. In some situations it's still required to use tricks involving the system catalogs (pg_catalog.pg_*) but it's not nearly as common. I frequently do the following:

  1. BEGIN a transaction to modify the privs
  2. Change ownership of DATABASES to a "DBA role"
  3. Change ownership of SCHEMAS to the "DBA role"
  4. REVOKE ALL privs on all TABLES, SEQUENCES and FUNCTIONS from all roles
  5. GRANT SELECT, INSERT, UPDATE, DELETE on relevant/appropriate tables to the appropriate roles
  6. COMMIT the DCL transaction.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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