user3414655
user3414655

Reputation: 3

How to give super user privileges for the existing user in postgresql

How to create super user for the existing user in postgresql, i want to give the super user permission for the abc user, now this user has only create DB rights only, i want give as super user anybody help me.

Upvotes: 0

Views: 495

Answers (1)

Craig Ringer
Craig Ringer

Reputation: 325081

Per the manual:

ALTER USER the_user SUPERUSER;

Upvotes: 1

Related Questions