Postgresql – How to change owner of PostgreSql database

postgresql

I need to change the owner of PostgreSql database.

How to change owner of PostgreSql database in phppgadmin?

Best Answer

ALTER DATABASE name OWNER TO new_owner;

See the Postgresql manual's entry on this for more details.