L
lcj
Unregistered / Unconfirmed
GUEST, unregistred user!
我在Sco Unixware下安装完Oracle 8.1.5标准版后。安装成功后,以system/manager连接,
建立两个数据表空间:ta和tb
create tablespace ta datafile '/user1/ta.dbf' size 10M;
create tablespace tb datafile '/user1/tb.dbf' size 10M;
然后建立一用户:tt
create user tt identified by tt default tablespace ta temporary tablespace tb;
grant dba to tt;
connect tt/tt;
然后我再建立一表:
create table aa(a number(1));
在我插入记录时就会发生以下错误:
insert into aa values (1);
ORA-01552:Cannot use system rollback segment for no-system tablespace ta
而同样的命令在Oracle 7.3.3、Oracle 8.1.6 Enterprise下均没有问题。
盼望你的回答!
建立两个数据表空间:ta和tb
create tablespace ta datafile '/user1/ta.dbf' size 10M;
create tablespace tb datafile '/user1/tb.dbf' size 10M;
然后建立一用户:tt
create user tt identified by tt default tablespace ta temporary tablespace tb;
grant dba to tt;
connect tt/tt;
然后我再建立一表:
create table aa(a number(1));
在我插入记录时就会发生以下错误:
insert into aa values (1);
ORA-01552:Cannot use system rollback segment for no-system tablespace ta
而同样的命令在Oracle 7.3.3、Oracle 8.1.6 Enterprise下均没有问题。
盼望你的回答!