博客
关于我
oracle删除DBF文件
阅读量:152 次
发布时间:2019-02-27

本文共 579 字,大约阅读时间需要 1 分钟。

oracle删除DBF文件 曾经以为把所有的表清空drop掉后其文件已经删除,但实质DBF数据文件依然还存在,在ORADATA文件下。必须要这样删除

DROP TABLESPACE tablespace_name                                   [ including contents [ and datafiles ] [ CASCADE CONSTRAINT ] ];    无选项 -- 当表空间为空才能删除;    including contents — 删除表空间及对象;    including contents and datafiles — 删除表空间、对象及数据文件;    includingcontents CASCADE CONSTRAINT — 删除关联;    including contents and datafiles cascade constraint -- 含前两项。  DROP TABLESPACE see including contents and datafiles cascade constraint;
然后在关闭oracle服务,手动删除该DBF文件即可。

原文:http://www.2cto.com/database/201308/236572.html

转载地址:http://bxbd.baihongyu.com/

你可能感兴趣的文章
Node出错导致运行崩溃的解决方案
查看>>
Node响应中文时解决乱码问题
查看>>
node基础(二)_模块以及处理乱码问题
查看>>
node安装卸载linux,Linux运维知识之linux 卸载安装node npm
查看>>
node安装及配置之windows版
查看>>
Node实现小爬虫
查看>>
Node提示:error code Z_BUF_ERROR,error error -5,error zlib:unexpected end of file
查看>>
Node提示:npm does not support Node.js v12.16.3
查看>>
Node搭建静态资源服务器时后缀名与响应头映射关系的Json文件
查看>>
Node服务在断开SSH后停止运行解决方案(创建守护进程)
查看>>
node模块化
查看>>