想执行动态分析表,但遇到了权限的问题:BEGIN
  EXECUTE IMMEDIATE 'analyze table scott.emp compute statistics
    for table
    for all indexes
    for all indexed columns';
END;
/在具有dba权限时上面的sql通过,但下面的却不行:CREATE OR REPLACE PROCEDURE Up_Analyze_Test IS
BEGIN
  EXECUTE IMMEDIATE 'analyze table scott.emp compute statistics
    for table
    for all indexes
    for all indexed columns';
END;
/exec Up_Analyze_Test ;报错: ORA-01031: 权限不足有什么解决方法?