在 SQL Server 2005 中授予对 2 个表的只读访问权限的最佳方法?

best way to grant read only access to 2 tables in SQL Server 2005?(在 SQL Server 2005 中授予对 2 个表的只读访问权限的最佳方法?)
本文介绍了在 SQL Server 2005 中授予对 2 个表的只读访问权限的最佳方法?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

授予少数用户访问 SQL Server 2005 数据库中几个表的权限的最佳方法是什么?

whats the best way to grant access to a few users to a couple tables in a SQL Server 2005 database?

我知道文献推动了视图的使用,但与授予对实际表的只读访问权限相比有什么好处?

I know the literature pushes the use of views but what is the gain over granting read only access to the actual table?

至少对于表,开销会更少,因为索引和其他限制已经到位并在表中进行管理(单点维护).如果我创建视图,那么我是否不需要维护它们并为它们创建索引......而且这将是 SQL 本身的额外开销?

at least with the table there will be less overhead in that the index and other restraints are already in place and managed at the table (a single point of maintenance). If I make views then won't i need to maintain them and create indexes on them... as well as this will be additional overhead for SQL itself?

推荐答案

CREATE ROLE role_name
GRANT SELECT ON table_name TO role_name

不要忘记将用户添加到该角色.添加个人权限通常是一种不好的做法.

Don't forget to add users to that role. Adding individual permissions is generally a bad practice.

如果您想以不同方式隐藏特定列/名称列/以其他方式过滤数据,则使用视图并授予视图权限非常有用.

Using views and giving permissions to the view is useful if you want to hide particular columns / name columns in different ways / otherwise filter the data.

这篇关于在 SQL Server 2005 中授予对 2 个表的只读访问权限的最佳方法?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

相关文档推荐

Sending parameters to stored procedures vb.net(将参数发送到存储过程 vb.net)
Insert multiple rows, count based on another table columns(插入多行,根据另一个表列计数)
How to hold the location of an image in a SQL Server database?(如何在 SQL Server 数据库中保存图像的位置?)
How to send to email (outlook) the selected items in SQL Server database using vb.net(如何使用 vb.net 将 SQL Server 数据库中的选定项目发送到电子邮件(Outlook))
datagrid checkbox writes Null instead of 0 (false) into database(datagrid 复选框将 Null 而不是 0 (false) 写入数据库)
DBCC CheckDb-any ways to detect errors vb.net?(DBCC CheckDb-vb.net 有什么检测错误的方法吗?)