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

相关文章:

  • 2021-10-09
  • 2021-12-02
  • 2021-05-29
  • 2022-12-23
  • 2021-08-06
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-06
  • 2021-12-17
  • 2021-10-16
  • 2022-12-23
相关资源
相似解决方案