grant给表赋权限:

 

    grant  select/update on  table to user;

 

    grant  权限 on 表  to 用户。

 

    2.grant 给存储过程赋权限:

 

    grant execute on package/function/procedure to user;

 

    grant execute on 过程、包、方法 to user

一次把权限给完(过程、包、方法):

 grant execute any procedure to user;

给其创建触发器权限:

grant create trigger to username;

相关文章:

  • 2021-09-27
  • 2022-12-23
  • 2022-03-08
  • 2021-11-10
  • 2022-12-23
  • 2022-12-23
  • 2021-08-13
猜你喜欢
  • 2021-11-04
  • 2022-12-23
  • 2022-12-23
  • 2018-06-18
  • 2022-02-03
  • 2021-07-19
相关资源
相似解决方案