How to disable SQL Server Management Studio for a user

前端 未结 11 2216
梦毁少年i
梦毁少年i 2021-01-02 13:49

Is there a way to prevent users from getting into SQL Server Management Studio so that they can\'t just edit table rows manually? They still need to access the tables by ru

11条回答
  •  灰色年华
    2021-01-02 14:31

    Make well usage of Database Roles, if Users should only have SELECT (read) access assign them the db_datareader Role. Even if they login using SSMS they will can execute only SELECT statements.

提交回复
热议问题