表空间创建与删除

创建表空间
create tablespace franktablespace
datafile ‘c:\franktablespace.dbf’
size 20m
autoextend on
next 5m

franktablespace 为表空间名称
datafile 用于设置物理文件名称
size 用于设置表空间的初始大小
autoextend on 用于设置自动增长,如果存储量超过初始大小,则开始自动扩容
next 用于设置扩容的空间大小
示例
表空间创建与删除_第1张图片
此时删除文件会报错
表空间创建与删除_第2张图片
删除表空间
drop tablespace franktablespace;
物理文件还在,但是可以手动在该目录下删除该文件

drop tablespace franktablespace including contents and datafiles;
物理文件同时删除

你可能感兴趣的:(Oracle)