postgres: upgrade a user to be a superuser?

后端 未结 7 1039
别那么骄傲
别那么骄傲 2021-01-29 17:03

In postgres, how do I change an existing user to be a superuser? I don\'t want to delete the existing user, for various reasons.

# alter user myuser ...?
         


        
7条回答
  •  孤城傲影
    2021-01-29 17:42

    Run this Command

    alter user myuser with superuser;
    

    If you want to see the permission to a user run following command

    \du
    

提交回复
热议问题