解决方法
如果执行DML的用户不是对象的所有者而不是数据库本身中的“db_owner”,则只能授予“insert”权限,但不能为该表授予更新权限:
假设一个表为id,col1,col2
grant insert,select,delete on the_table to the_user; grant update (id,col2) on the_table to the_user;
通过这些授权,the_user可以为所有三列插入行和供应值.他还可以更新id和col2列,但不能更新col1列.
db_owner(可能还有表的创建者/所有者)总是可以更新所有列.我不知道是否有办法从这些rolws中撤销该特权.