Oracle 创建存储过程 提示权限不足或者提示表和视图不存在问题

时间:2023-02-08 15:47:44

grant create view to hospital;

--授予查询权限
grant select any table to hospital;

--授予权限
grant select any dictionary to hospital;


grant SELECT ON Yfgl_YPRuKuDan to hospital;
grant SELECT ON Yfgl_YPRukudanmx to hospital;

 

ORA-01031:权限不足的问题
在 脚本更新时,报错:ORA-01031: 权限不足。
grant connect,resource,dba to hospital;
赋权DBA之后,还有这个错误。
执行 grant all privileges to hospital;
赋予任何主机访问数据的权限,问题得到了解决。