zoukankan      html  css  js  c++  java
  • oracle 删除表空间错误 提示:ora02429:无法删除用于强制唯一/主键的索引。

    sql>drop tablespace ksdm

    ora-01549:表空间非空,请使用INCLUDING CONTENTS 选项

    sql>drop tablespace ksdm INCLUDING CONTENTS and datafiles;

    ora-00604:递归sql层1出现错误。

    ora-02429:无法删除用于强制唯一/主键的索引。

    sql>drop tablespace ksdm including contents cascade constraints

    ora-00604:递归sql层1出现错误。

    ora-02429:无法删除用于强制唯一/主键的索引。

    sql>select segment_name,partition_name,tablespace_name from   dba_extents    where tablespace_name=upper('KSDM')

    显示出2个表的主键的表空间是:KSDM.

    sql>select 'alter table '||owner||'.'||table_name||' drop constraint '||constraint_name||' ;'
    from dba_constraints
    where constraint_type in ('U', 'P')
       and (index_owner, index_name) in
           (select owner, segment_name
              from dba_segments
             where tablespace_name = 'KSDM');

    显示结果如下:

    alter table TEST.SYS_CODE drop constraint PK_CODEID ;

    alter table TEST.KS_WPYP_PWPLGX drop constraint PK_KS_WPYP_PWPLGX ;

     

    执行以上2条显示的结果

    sql>alter table TEST.SYS_CODE drop constraint PK_CODEID ;

    表已经更改

    sql>alter table TEST.KS_WPYP_PWPLGX drop constraint PK_KS_WPYP_PWPLGX ;

    表已经更改

    sql>drop tablespace KSDM

    表空间已经丢弃。

    记得修改上面2个被修改过的表。

  • 相关阅读:
    createjs 利用createjs 写拼图功能
    canvas 利用canvas中的globalCompositeOperation 绘制刮奖 效果
    git 命令
    cmd 打开gitshell
    Grunt完成对LESS实时编译
    nodejs gulp less编辑
    canvas 绘制 矩形 圆形
    canvas绘制时钟
    juqery easyui
    vue-router(第2节课,妙味课堂)
  • 原文地址:https://www.cnblogs.com/umlzhang/p/1823213.html
Copyright © 2011-2022 走看看