oracle创建表空间,删除表空间,删除数据文件

创建临时表空间和创建数据表空间
--创建临时表空间
create temporary tablespace test_temp
tempfile 'c:\oracle\product\10.2.0\oradata\orcl\test_temp.dbf'
size 32m
autoextend on
next 32m maxsize 20480m
extent management local;
--创建数据表空间
create tablespace test
logging
datafile 'c:\oracle\product\10.2.0\oradata\orcl\test.dbf'
size 32m
autoextend on
next 32m maxsize 20480m
extent management local;

删除表空间和临时空间 包括数据文件
drop tablespace testoa including contents and datafiles;
drop tablespace test_temp including contents and datafiles;

但如果已经把表空间删除了,数据文件没有删除,则可以直接在服务器上物理删除数据文件

你可能感兴趣的:(oracle,C++,c,C#)