欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

删除oracle表空间

程序员文章站 2022-06-26 19:14:12
...

 

drop tablespace tbname;  --将表空间删除(表空间中无对象存在)

drop tablespace tbname  including contents(将表空间及存在其中的对象一起删除)


以上两个语句都不能物理的将表空间数据文件删除,如果想将文件一起删除,则需要下面语法:
drop tablespace tbname  including contents and datafiles;