指定的行与行之间插入一行我没试过。
新建一个用户比较好。
建立用户/分配空间/分配权限的命令如下:
create tablespace 用户名 datafile 
'/oracle/oradata/hcnews/用户名.dbf' size 100M reuse
autoextend on next 10M;
commit;create user 用户名 identified by 用户名
default tablespace 用户名 
temporary tablespace temp 
quota unlimited on 用户名 
quota unlimited on temp;
commit;grant create session to 用户名;
commit;grant connect to 用户名;
commit;grant resource to 用户名;
commit;