oracle表空间
Posted MyBatis
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle表空间相关的知识,希望对你有一定的参考价值。
--创建表空间权限
grant create tablespace to QJT
--删除表空间权限
grant DROP tablespace to QJT
--创建表空间
create tablespace qjttest
datafile ‘F:\app\QiuShao\oradata\orcl\qjt_1.dbf‘ size 10m,
‘F:\app\QiuShao\oradata\orcl\qjt_2.dbf‘ size 10m
autoextend on next 32m maxsize unlimited
--检索当前用户的表空间
select tablespace_name from user_tablespaces;
--删除表空间
drop tablespace qjttest
--删除表空间的同时清除物理文件
drop tablespace qjttest including contents and datafiles
以上是关于oracle表空间的主要内容,如果未能解决你的问题,请参考以下文章