create temporary tablespace temp_space_d08
tempfile 'temp_space_d08.dbf'
size 10m
autoextend on
next 5m
maxsize 1024m;
create tablespace space_d08
datafile 'space_d08.dbf' --datefile
size 10m
autoextend on
next 5m
maxsize 1024m;
create user user_d08 identified by user_d08
default tablespace space_d08
temporary tablespace temp_space_d08;
grant connect,resource to user_d08;
drop user user_d08 cascade;
drop tablespace space_d08 including contents and datafiles cascade constraints;
drop tablespace temp_space_d08 including contents and datafiles cascade constraints;
本文介绍了一个Oracle数据库中创建临时表空间、用户表空间的过程,并演示了如何为用户分配这些表空间资源,最后提供了清理这些资源的步骤。

被折叠的 条评论
为什么被折叠?



