Problems in Import [message #136761] |
Fri, 09 September 2005 23:46 |
Avra
Messages: 65 Registered: July 2004
|
Member |
|
|
Hi,
This is Avra from India. I am using Oracle8i with Win2000 Prof. I am trying to import a table from a .dmp file which contains round about 49,00,000 rows. But it's throwing the following error after importing round about 17,00,000 rows.
imp 00058: oracle error 1562 occured
ora-01562: failed to extent rollback segment number3
ora-01628: max # extents (121) reached or rollback segment rb2
imp-00028: partial import of prev table rolledback
Pls help me to solve this problem.
Thanks in advance....
Avra
|
|
|
Re: Problems in Import [message #136773 is a reply to message #136761] |
Sat, 10 September 2005 01:29 |
tarundua
Messages: 1080 Registered: June 2005 Location: India
|
Senior Member |
|
|
I think ur import session is generating lots of rollback entries & rollback segments are not big enough to accomodate those rollback entries.
Create more rollback segments & try again.
regards,
tarun
|
|
|
|
Re: Problems in Import [message #136864 is a reply to message #136773] |
Sun, 11 September 2005 23:12 |
Avra
Messages: 65 Registered: July 2004
|
Member |
|
|
Hi Tarun,
As per ur advice, I ve created the following rollback segment, but still i am getting the same error. Pls help....
create tablespace "PLS" DATAFILE 'F:\Oracle\PLS1.DBF' SIZE 2000M ,'F:\Oracle\PLS2.DBF' SIZE 2000M autoextend oN
ONLINE PERMANENT
CREATE ROLLBACK SEGMENT RBS_PLS
TABLESPACE PLS
STORAGE
( INITIAL 1000M
NEXT 1000M
MAXEXTENTS UNLIMITED );
ALTER ROLLBACK SEGMENT RBS_PLS ONLINE;
CREATE USER AAA IDENTIFIED BY AAA DEFAULT TABLESPACE PLS TEMPORARY TABLESPACE TEMP
Do u suggest any changes??
Thanks,
Avra
|
|
|
|
|