没有你说的这种赋权方法,除非a用户是通过role得到的权限,你可以把这个role赋给b.

解决方案 »

  1.   

    ORA-01031 insufficient privileges Cause: An attempt was made to change the current username or password without the appropriate privilege. This error also occurs if attempting to UPDATE a table with only SELECT privileges, if attempting to CONNECT INTERNAL, or if attempting to install a database without the necessary operating-system privileges. When Trusted Oracle7 is configured in DBMS MAC, this error may occur if the user was granted the necessary privilege at a higher label than the current login. Action: Ask the database administrator to perform the operation or grant therequired privileges. For Trusted Oracle7 users getting this error although granted the appropriate privilege at a higher label, ask the database administrator to regrant the privilege at the appropriate label. 
      

  2.   

    connect a/??;
    grant update on table to b;
      

  3.   

    用a用户登陆就可以付给b用户相应的权限我也知道的。
    我的意思是想请教,sys用户是否就是无法实现数据库其它两用户之间的对象级权限grant操作,除了将a.table的修改权限付给sys。