alter table storage parameters [message #124155] |
Thu, 16 June 2005 11:02 |
Zakkhalid
Messages: 47 Registered: April 2005
|
Member |
|
|
I have table that has 1m+ records in it.., so I don't really want to drop it and recreate...but I want to change the initial, next and maxextents in one command...
alter table x storage(initial 1m next 1m ...
doesn't seem to work..
thanking you all inadvance...
|
|
|
Re: alter table storage parameters [message #124158 is a reply to message #124155] |
Thu, 16 June 2005 11:13 |
macdba
Messages: 27 Registered: May 2005 Location: US
|
Junior Member |
|
|
The storage parameters INITIAL and MINEXTENTS cannot be altered.
You can try moving the table using
ALTER TABLE table_name MOVE STORAGE ( INITIAL ...
NEXT ...
MINEXTENTS ...
MAXEXTENTS ...
PCTINCREASE ... )
|
|
|
|
|
|