使 SQL 选择查询只读
有没有办法设置“仅选择”模式?
我使用 SQL Server Management Studio,我害怕在从数据库中选择内容时编辑某些行!
Is there a way to set an "Select Only" Mode?
I work with SQL Server Management Studio and im afraid of editing some lines while selecting stuff from the database!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
创建一个仅具有选择权限的新用户。然后使用该用户进行连接。
create a new user with select only permissions. then use that user to connect.
ALTER DATABASE 数据库名称 SET READ_ONLY
http://www.blackwasp.co.uk/SQLReadOnly.aspx
ALTER DATABASE database-name SET READ_ONLY
http://www.blackwasp.co.uk/SQLReadOnly.aspx
是的,它们称为用户权限。所以你需要设置你的帐户只有对数据库的选择权限。
所以
Yes, they are called user permissions. So you need to set the account you have only select rights to the database.
So