查了一下资料:
Error: ORA-25150 Text: ALTERING of extent parameters not permitted --------------------------------------------------------------------------- Cause: An attempt was made to alter the extent parameters for a segment in a tablespace with autoallocate or uniform. extent allocation policy. Action: Remove the appropriate extent parameters from the command.
原因:
表空间使用本地管理,其中的表不能修改NEXT MAXEXTENTS和PCTINCREASE参数
使用数据自动管理的表空间,其中的表可以修改NEXT MAXEXTENTS和PCTINCREASE参数
修改
alter table DR_GPRS MOVE
storage
(
next 128
)
;
alter table DR_GPRS add SYCS00 varchar2(10);
storage
(
next 128
)
;
alter table DR_GPRS add SYCS00 varchar2(10);