博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

报错:ORA-25150:不允许对区参数执行ALERING

Posted on 2011-03-30 16:04  codingsilence  阅读(450)  评论(0编辑  收藏  举报

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