文章列表
--创建临时表空间
create temporary tablespace oraclespace_temp
tempfile 'G:\oracle\product\10.2.0\oradata\oraclespace\oraclespace_temp.dbf'
size 32M
autoextend on
next 32M maxsize 2048M
extent management local;
--创建数据表空间
create tablespace oraclespace_data
logging
datafile 'G:\oracle\product\10.2.0\oradata ...