修改存储过程,在存储过程名称后面添加 Authid Current_User 后执行通过。
CREATE OR REPLACE PROCEDURE p_test Authid Current_User IS BEGIN EXECUTE Immediate ‘create table test01 as (select * from dual)‘; END p_test;
2022-09-05 09:01:45
修改存储过程,在存储过程名称后面添加 Authid Current_User 后执行通过。
CREATE OR REPLACE PROCEDURE p_test Authid Current_User IS BEGIN EXECUTE Immediate ‘create table test01 as (select * from dual)‘; END p_test;