title: "ALTER ... OWNER"
description: "ALTER ... OWNER
updates the owner of an item."
menu:
main:
parent: 'commands'
ALTER ... OWNER
updates the owner of an item.
{{< diagram "alter-owner.svg" >}}
Field | Use |
---|---|
name | The identifier of the item you want to alter. |
new_owner | The role name you want to set as the new owner. |
You must be a member of the new owner role to alter the ownership of an object. You cannot alter the owner of an index. If you try, it will return successfully with a warning, but will not actually change the owner of the index. This is for backwards compatibility reasons. The index owner is always kept in-sync with the owner of the underlying relation.
ALTER TABLE t OWNER TO joe;
ALTER CLUSTER REPLICA production.r1 OWNER TO admin;
The privileges required to execute this statement are:
{{< include-md file="shared-content/sql-command-privileges/alter-owner.md" >}}