拒绝删除 Sql Server 2008 中的数据库对象
我需要帮助来使用 sql server 2008 将 GRANT CREATE、ALTER BUT DENY DROP DB 对象设置为 db 用户。
我已经尝试过此操作,但它返回错误:
use DBName
GO
DENY DROP TO dbUser
Error: Incorrect syntax near 'DROP'.
任何帮助将不胜感激。 非常感谢
..rfs
I need help to set GRANT CREATE, ALTER BUT DENY DROP DB Objects to db users using sql server 2008.
I've tried this but it returns error:
use DBName
GO
DENY DROP TO dbUser
Error: Incorrect syntax near 'DROP'.
Any help would be much appreciated.
Many thanks..
rfs
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
没有
DROP
权限,但您需要在案例中使用
DELETE
代码如下http://technet.microsoft.com/en-us/library/ms188338.aspx
There is no
DROP
permission but instead you need to useDELETE
in your case code will be as follows
http://technet.microsoft.com/en-us/library/ms188338.aspx