Removing Row chaining [message #306036] |
Wed, 12 March 2008 11:18 |
kudur_kv
Messages: 75 Registered: February 2005
|
Member |
|
|
Hi,
Any documents/procedure on the most effective way to Removing row chaining will be very helpful.
Could anyone please help me out with one?
Thank you
KV
|
|
|
|
Re: Removing Row chaining [message #306121 is a reply to message #306043] |
Wed, 12 March 2008 22:37 |
trantuananh24hg
Messages: 744 Registered: January 2007 Location: Ha Noi, Viet Nam
|
Senior Member |
|
|
I think, I may avoid row_mirgation by
1/Move table to the other segment, and increase PCTFREE corrseponding
SQL> alter table X move
PCTFREE 20
PCTUSED 40
STORAGE (INITIAL 20K
NEXT 40K
MINEXTENTS 2
MAXEXTENTS 20
PCTINCREASE 0);
2/ Rebuild Index on that table
SQL> alter index X_indx rebuild;
With Really Chained_Row, said Michel, he's right.
|
|
|