- ·上一篇:excel表格怎么用万元显示金额
- ·下一篇:excel表格日期相减怎么设置天数
excel表格空间怎么删除
2024-08-09 15:18:16
1.如何删除表空间
你好(oracle)
--删除空的表空间,但是不包含物理文件
drop tablespace tablespace_name;
--删除非空表空间,但是不包含物理文件
drop tablespace tablespace_name including contents;
--删除空表空间,包含物理文件
drop tablespace tablespace_name including datafiles;
--删除非空表空间,包含物理文件
drop tablespace tablespace_name including contents and datafiles;
--如果其他表空间中的表有外键等约束关联到了本表空间中的表的字段,就要加上CASCADE CONSTRAINTS
drop tablespace tablespace_name including contents and datafiles CASCADE CONSTRAINTS;
2.急!怎么删除表空间?
用如下方法删除表空间。
1、登录oracle数据库,如用plsql,需要用户具有删除表空间的权限。
2、打开一个SQL窗口。
3、输入如下语句,并执行:
1
droptablespace 表空间名;