Oracle11g 通过SQL语句创建表空间方法
- 创建临时表空间
create temporary tablespace 自定义_temp
tempfile 'D:\oracledata\自定义_temp.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;
create temporary tablespace 自定义_temp
tempfile 'D:\oracledata\自定义_temp.dbf'
size 50m
autoextend on
next 50m maxsize 20480m
extent management local;
软件版本
需求说明
当前项目中为PHP+MySQL结构,在后续的开发中需要加入对Oracle数据库的操作,所以需要项目可以同时连接操作MySQL和Oracle数据库,MySQL为原有默认操作,在需要操作Oracle库时临时切换数据库连接。