日期:2014-05-18  浏览次数:20618 次

新手遇到问题了
我SQL2005中创建了一个登入用户GuanGYu要赋予她对表XSS的全部操作权限,如下:
grant all privileges
on xss
to GuanYu

然后它提示“ALL 权限已不再推荐使用,并且只保留用于兼容性目的。它并不表示对实体定义了 ALL 权限。 ”
怎么解决?

------解决方案--------------------
SQL code
grant select on xss to GuanGYu;--选择
grant INSERT on xss to GuanGYu;--插入
grant VIEW DEFINITION on xss to GuanGYu;--查看定义
grant VIEW CHANGE TRACKING  on xss to GuanGYu;--查看更改跟踪
grant ALTER  on xss to GuanGYu;--修改
grant UPDATE  on xss to GuanGYu;--更新
grant DELETE  on xss to GuanGYu;--删除
grant TAKE OWNERSHIP  on xss to GuanGYu;--接管所有权
grant CONTROL  on xss to GuanGYu;--控制
grant REFERENCES  on xss to GuanGYu;---引用