首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

剔除oracle表空间

2012-07-04 
删除oracle表空间?drop tablespace tbname??--将表空间删除(表空间中无对象存在)drop tablespace tbname?

删除oracle表空间

?

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

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


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

热点排行