返回顶部
首页 > 资讯 > 数据库 >Oracle表空间切换路径,解决硬盘满导致的ORA-01653问题
  • 132
分享到

Oracle表空间切换路径,解决硬盘满导致的ORA-01653问题

2024-04-02 19:04:59 132人浏览 安东尼
摘要

问题 ORA-1653

问题



ORA-1653: unable to extend table CAMS_CORE.BP_E_JOURNAL_DATA by 128 in                 tablespace CAMS_CORE_TAB
ORA-1653: unable to extend table CAMS_CORE.BP_E_JOURNAL_DATA by 1024 in                 tablespace CAMS_CORE_TAB

解决方案



查看表空间文件大小及路径
select * from dba_data_files;
将部分表空间offline
alter tablespace CAMS_CORE_TAB offline;
alter tablespace CAMS_CORE_IDX offline;
alter tablespace CAMS_CORE_LOB offline;
创建临时存放表空间文件的路径
mkdir -p /app/oracle/tablespace/
mv /home/oracle/cams/tablespace/CAMS_CORE_*.dbf /app/oracle/tablespace/
修改表空间的路径
alter tablespace CAMS_CORE_IDX rename datafile '/home/oracle/cams/tablespace/CAMS_CORE_IDX_001.dbf' to '/app/oracle/tablespace/CAMS_CORE_IDX_001.dbf';
alter tablespace CAMS_CORE_LOB rename datafile '/home/oracle/cams/tablespace/CAMS_CORE_LOB_001.dbf' to '/app/oracle/tablespace/CAMS_CORE_LOB_001.dbf';
alter tablespace CAMS_CORE_TAB rename datafile '/home/oracle/cams/tablespace/CAMS_CORE_TAB_001.dbf' to '/app/oracle/tablespace/CAMS_CORE_TAB_001.dbf';
将相关表空间online
alter tablespace CAMS_CORE_TAB online;
alter tablespace CAMS_CORE_IDX online;
alter tablespace CAMS_CORE_LOB online;
查看表空间最新路径
select * from dba_data_files;

结果图片 **
Oracle表空间切换路径,解决硬盘满导致的ORA-01653问题

经过验证,应用程序恢复正常,数据库恢复正常!

您可能感兴趣的文档:

--结束END--

本文标题: Oracle表空间切换路径,解决硬盘满导致的ORA-01653问题

本文链接: https://lsjlt.com/news/49339.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作