oracle, create table, insufficient privileges

        SQL> exec pro_gz_day_report;  
        ORA-01031: insufficient privileges  
        ORA-06512: at "....", line 6  
        ORA-06512: at line 2    


限不足无法创建表,可以通过如下方案解决:

grant create any table to 用户名; 

你可能感兴趣的:(oracle, create table, insufficient privileges)