报错:ORA-25150:不允许对区参数执行ALERING
1、执行
alter table BMDW add leaf varchar2(10);
报错:ORA-25150:不允许对区参数执行ALTERING
-- Alter table
alter table BMDW
storage
{
next 128
}
2、修改如下
alter table BMDW MOVE
storage
(
next 128
)
;
-- Add/modify columns
alter table BMDW add leaf varchar2(10);