ora-25150 [message #123956] |
Wed, 15 June 2005 13:18 |
balavignesh
Messages: 180 Registered: March 2005
|
Senior Member |
|
|
hai ,
we are getting ora-1691 when inserting lob.
first we tried to extend the maxextents but it gives ora-25150.so we created new tablespace with autoallocate and locally managed option and moved that table to that new tablespace.but now when inserting the lob, it gives ora-01502.what to do now..?client is waiting...urgent.plz help..
bala
|
|
|
Re: ora-25150 [message #123960 is a reply to message #123956] |
Wed, 15 June 2005 13:37 |
macdba
Messages: 27 Registered: May 2005 Location: US
|
Junior Member |
|
|
When u move table from one tablesp to another, indexes for that table becomes invalid.
So rebuild all the indexes for that table.
alter index index_name rebuild online;
|
|
|
Re: ora-25150 [message #123963 is a reply to message #123960] |
Wed, 15 June 2005 13:42 |
|
Mahesh Rajendran
Messages: 10708 Registered: March 2002 Location: oracleDocoVille
|
Senior Member Account Moderator |
|
|
as macdba said, you need to do some rebuild.
since lobs are involved, you need to move the lobsegments also.
something like
alter table lobtable move tablespace new_tablespace lob(lobcolum) store as lobsegment (tablespace new_tablespace).
And next time,
Please post something meaningful.
Your oracle versions / OS,
FUll error message etc.
[Updated on: Wed, 15 June 2005 13:43] Report message to a moderator
|
|
|
Re: ora-25150 [message #123966 is a reply to message #123963] |
Wed, 15 June 2005 13:57 |
balavignesh
Messages: 180 Registered: March 2005
|
Senior Member |
|
|
hai,
oracle 9i server
linux - os
see , the table contains both lob fields and non-lob fields .i have rebuilt the index and moved the segments also.then what about the non-lob fields when i moved to new tablespace LOB2?
bala
|
|
|
|
|