sql server sa account modify permisions

NeophyteSQL 241 Reputation points
2020-10-27T15:53:53.137+00:00

is it possible to alter the permissions of the actual sa account in sql server

SQL Server | Other
0 comments No comments
{count} votes

Accepted answer
  1. David Browne - msft 3,851 Reputation points
    2020-10-27T15:56:47.767+00:00

    No. It is not possible to alter the permissions of the SA account in SQL Server. You can disable the sa login, if you want.

    0 comments No comments

2 additional answers

Sort by: Most helpful
  1. m 4,276 Reputation points
    2020-10-28T03:21:15.737+00:00

    Hi @NeophyteSQL ,

    is it possible to alter the permissions of the actual sa account in sql server

    No. It is not. Sysadmin is one of the fixed server-level roles, SQL Server provides nine fixed server roles. And the permissions that are granted to the fixed server roles (except public) cannot be changed.

    Why do you want to you to change SA account's permission? If you have new logins and new users, you can create a new role and then grant them the suitable permissions. Of course, firstly, you need to have the grant permission. If you do not, you can ask your SA to chieve that.

    More information: sql-server-create-login-user-role-and-assign-permission

    Note:
    Beginning with SQL Server 2012 (11.x), you can create user-defined server roles and add server-level permissions to the user-defined server roles.

    BR,
    Mia

    0 comments No comments

  2. m 4,276 Reputation points
    2020-10-29T01:12:03.633+00:00

    Hi @NeophyteSQL ,

    Is the reply helpful?

    BR,
    Mia


    If the answer is helpful, please click "Accept Answer" and upvote it.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.