软件测试开发语言oracle temp01.dbf 文件的释放

发表于:2009-12-31来源:作者:点击数: 标签:
软件测试开发语言 oracle temp01.dbf 文件的释放 数据库开发 create temporary tablespace temp2 tempfile 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\TEMP02.DBF' size 512M reuse autoextend on next 640k maxsize unlimited; alter database default tempor

        软件测试开发语言oracle temp01.dbf 文件的释放  数据库开发

  create temporary tablespace temp2

  tempfile 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\TEMP02.DBF' size 512M reuse

  autoextend on next 640k maxsize unlimited;

  alter database default temporary tablespace temp2;

  drop tablespace temp including contents and datafiles;

  --(注意:由于临时表空间的数据文件比较大,所以这步可能会花费比较长的时间)

  create temporary tablespace temp

  tempfile 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\TEMP01.DBF' size 512M reuse

  autoextend on next 640K maxsize unlimited;

  alter database default temporary tablespace temp;

  drop tablespace temp2 including contents and datafiles;

原文转自:http://www.ltesting.net