在做一个备份表数据的存储过程时遇到的错误。

 

procedure backuptest
is
v_sql varchar2(100);
begin

v_sql := 'create table bk1 as select * from bkt';
execute immediate v_sql;

end backuptest;


1,用系统管理员登陆oracle
2,grant create any table to xxxxx(执行用oracle用户)
处理结束。

相关文章:

  • 2021-09-27
  • 2021-05-23
  • 2021-05-12
  • 2022-01-07
  • 2022-12-23
  • 2021-12-23
  • 2021-11-17
猜你喜欢
  • 2021-07-28
  • 2022-12-23
  • 2021-06-16
  • 2021-08-17
  • 2021-12-07
  • 2022-12-23
相关资源
相似解决方案