用sys登录
grant resoure to 用户;

解决方案 »

  1.   

    grant resource to 用户;
      

  2.   

    用户在test表空间中缺少限额:alter user <username> quota 100m on test
      

  3.   

    SQL是这样的,用system能运行,但用其它用户不能运行,要有怎样的权限才能运行这条SQL语句,Create Table A(FTabNum number(5) NOT NULL ,FRow number(5) NOT NULL ,FCol number(5) NOT NULL ,FContent varchar2(600) NOT NULL ,FLLine number(3) NOT NULL ,FTLine number(3) NOT NULL ,FRLine number(3) NOT NULL ,FBLine number(3) NOT NULL ,FLColor number(10) NOT NULL ,FTColor number(10) NOT NULL ,FRColor number(10) NOT NULL ,FBColor number(10) NOT NULL ,FBackColor number(10) NOT NULL ,FForeColor number(10) NOT NULL ,FFontName varchar2(50) NOT NULL ,FFontSize float(24) NOT NULL ,FFontStyle number(3) NOT NULL ,FDataType number(3) NOT NULL ,FFormat varchar2(99) NOT NULL ,primary key (FTabNum,FRow,FCol))
      

  4.   

    grant create any table to xxx;其他权限参考如下:
     grant connect to xxx;
     grant dba to xxx;
     grant resource to xxx;
     grant create any index to xxx;
     grant create any procedure to xxx;
     grant create any sequence to xxx;
     grant create any table to xxx;
     grant create any trigger to xxx;
     grant create any view to xxx;
     grant alter any index to xxx;
     grant alter any procedure to xxx;
     grant alter any sequence to xxx;
     grant alter any table to xxx;
     grant alter any trigger to xxx;
     grant drop any index to xxx;
     grant drop any procedure to xxx;
     grant drop any sequence to xxx;
     grant drop any table to xxx;
     grant drop any trigger to xxx;
     grant drop any view to xxx;
     grant create public synonym to xxx;
     grant drop public synonym to xxx;
     grant backup any table to xxx;
     grant comment any table to xxx;
     grant drop any table to xxx;
     grant lock any table to xxx;
     grant select any table to xxx;
     grant insert any table to xxx;
     grant update any table to xxx;
     grant delete any table to xxx;
     grant create session to xxx;
     grant execute any procedure to xxx;
     grant select any sequence to xxx;
      

  5.   

    楼上的,ORA-01658 与“create any table"有关系吗?有没有仔细看题目啊
      

  6.   

    哦……没仔细看……把datafile增大一点,或者把initial减小一点
      

  7.   

    关键是看见一下这句,就以为……
    引:
    SQL是这样的,用system能运行,但用其它用户不能运行,要有怎样的权限才能运行这条SQL语句,Create Table A(FTabNum number(5) NOT NULL ,FRow number(5) NOT NULL ,FCol number(5) NOT NULL ,FContent varchar2(600) NOT NULL ,FLLine number(3) NOT NULL ,FTLine number(3) NOT ……