写了一段匿名块,调用了一个包里的存储过程,请问要怎么解决?
1.首先要将这张表的insert权限赋予你当前的操作用户;2.在操作表的前面加上用户,不然没有办法找到表。
先把你当先所用的账号操作权限放宽。再检查一下表名。
execute immediate 'insert into hand_student_temp select * from hand_student'; 这么写