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 用户名; 

原文地址:https://www.cnblogs.com/emanlee/p/5263509.html