当前位置:  数据库>oracle

ORA-22868: table with LOBs contains segments in different tablespaces

    来源: 互联网  发布时间:2017-06-16

    本文导语: 今天做实验的时候创建了一个表空间lob_tbs, 并且在该表空间上创建了一个包含大对象字段的表lob_tab。 当实验结束想要删除该表空间时报错ORA-22868。使用Oracle的帮助信息oerr ora 22868很容易定位问题的原因,根据提示先删除含有大...

今天做实验的时候创建了一个表空间lob_tbs, 并且在该表空间上创建了一个包含大对象字段的表lob_tab。 当实验结束想要删除该表空间时报错ORA-22868。使用Oracle的帮助信息oerr ora 22868很容易定位问题的原因,根据提示先删除含有大字段的表,然后在删除该表空间就可以了。

问题还原如下:

1. 创建表空间lob_tbs

create tablespace lob_tbs datafile ‘/dbfiles/lob_tbs01.dbf’ size 100m

autoextend on extent management local;

2. 在users表空间创建表lob_tab,  大字段列存储在lob_tbs表空间中

create table lob_tab (id int, doc blog) tablespace users

lob(doc) store as securefile(tablespace lob_tbs compress high deduplicate);

3. 删除表空间lob_tbs报错ORA-22868

drop tablespace lob_tbs including contents;

drop tablespace lob_tbs including contents

*

ERROR at line 1:

ORA-22868: table with LOBs contains segments in different tablespaces

使用oerr帮助信息查到提示drop these tables and reissure drop tablespace. 先删除表,然后在删除表空间

enmoedu1*PROD1 ~ $ oerr ora 22868

22868, 00000, "table with LOBs contains segments in different tablespaces"

// *Cause: An attempt was made to drop a tablespace which contains the

// segment(s) for the LOB columns of a table but does not contain

// the table segment.

// *Action: Find table(s) with LOB columns which have non-table segments in

// this tablespace. Drop these tables and reissue drop tablespace.

HR@PROD1 > drop table lob_tab;

SYS@PROD1 > drop tablespace lob_tbs;

Tablespace dropped.

遇到报错信息时,使用oerr可提供说明,甚至给出指导性建议来帮助我们处理问题。

全文完


    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 出现ORA-01401和ORA-01008错误?
  • Eclipse连接Oracle数据库的ORA-00604 ORA-12705错误
  • oracle ORA-01114、ORA-27067错误解决方法
  • Oracle不能删除表 ORA-00604 ORA-01422 错误
  • 如何得到带有ora的行的下一行
  • ORA-12514及ORA-28547错误解决方案
  • 如何配置 linux 下 oracle 的 listener .ora 和
  • 浅析如何在tnsnames.ora中配置监听
  • Orcle的package中访问其它Schema的表报错ORA-00942解决方法
  • oracle远程连接服务器出现 ORA-12170 TNS:连接超时 解决办法
  • [Oracle] 浅析令人抓狂的ORA-01555问题
  • 解决报错ora-32035的方法分析
  • aq.executeQuery: ORA-00020: maximum number of processes (59) exceeded
  • Oracle 数据库闪回功能设置出现ORA-19809和ORA-19804错误
  • ORA-00947:Not enough values (没有足够的值)的深入分析
  • solaris10 安装 ora9.2.0.1 时报错
  • 在UNIX下,我的ORA817该怎么样才可以自己启动呀?
  • 基于ORA-12170 TNS 连接超时解决办法详解
  • plsql连接oracle数据库报ora 12154错误解决方法
  • 安装oracle出现error:ora-01031:insufficient privilleges的解决


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3