解決ORA-25150不允許對區引數執行ALERING

mahanso發表於2013-07-10
       今天同事過來問我修改不了資料庫中表的欄位,報ORA-25150,我檢視一下資料庫使用者許可權,有create table許可權。我就很納悶。


查了一下資料:

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);

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12272958/viewspace-765971/,如需轉載,請註明出處,否則將追究法律責任。

相關文章