Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Exporting user's data to new database

Re: Exporting user's data to new database

From: Sybrand Bakker <postbus_at_sybrandb.demon.nl>
Date: 2000/06/08
Message-ID: <960494931.17335.2.pluto.d4ee154e@news.demon.nl>#1/1

So two problems
1 doesn't anything at all because of rollback segment trouble 2 doesn't go to the expected tablespace

1
You don't seem to have (or they are not online) rollback segments. You need to have one additional rollback segment in the tablespace SYSTEM This is for maintenance purposes only, normally it will not be online. Four rollback segments in any other tablespace than SYSTEM. Would result in the following commands
create rollback segment rbtemp
tablespace system
storage (initial 100k next 100k minextents 4); alter rollback segment rbtemp online;
create tablespace rbs
datafile '<anything>' size 128 M
default storage (initial 1 M next 1 M pctincrease 0 minextents 4 maxextents 32);
create rollback segment rbs01
tablespace rbs;
alter rollback segment rbs01
online;
... repeat the last two commands for rbs02 .. rbs04 change or add to initk5ent2.ora in $ORACLE_HOME/dbs the following line
rollback_segments=(rbs01,rbs02,rbs03,rbs04)

2
Assuming the correct tablespace exists check the default tablespace of the user k52. If this is correct check whether the user has the unlimited tablespace privilege (select * from session_privs) or has sufficient quota on the tablespace (select * from user_ts_quotas)

Hope you will succeed now.
Please note your problems have nothing to do with imp, but with a database that's not yet fully operational. We should have addressed that now.

Hth,

Sybrand Bakker, Oracle DBA

Received on Thu Jun 08 2000 - 00:00:00 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US