ITPub博客

首页 > Linux操作系统 > Linux操作系统 > Oracle10g TEMP 文件Disk Space Allocation 问题

Oracle10g TEMP 文件Disk Space Allocation 问题

原创 Linux操作系统 作者:tolywang 时间:2007-11-01 00:00:00 0 删除 编辑
¨ Creating Temporary Tablespaces

Temporary segments are most commonly generated during sorting operations such as ORDER BY, GROUP BY, and CREATE INDEX. They are also generated during other

operations such as hash joins or inserts into temporary tables.

CREATE TEMPORARY TABLESPACE temp TEMPFILE

‘C:ORACLEORADATAORA10TEMP01.DBF' SIZE 2G ;


Temp files are only available with temporary tablespaces, never need to be backed up, and do not log data changes in the redo logs.

Note: tempfile information is stored in v$tempfile , not in v$datafile ;

¨ Temp files are not always guaranteed to allocate the disk space specified. This means that on some Unix systems a temp file will not actually allocate disk space until a sorting operation requires it ; Although this delayed allocation approach allows rapid file creation, it can cause problems down the road if you have not reserved the space that may be needed at runtime.
¨Workaround for Deferred Temp File Disk Space Allocations

A workaround for allocating temp file space at runtime is to preallocate it, just like you do with a datafile. In fact, you first allocate it as a datafile and then drop the tablespace, leaving the file. Finally, you create your temp tablespace reusing the old datafile as a temp file.

-- first create it as a permanent tablespace

-- to force the disk space to be allocated

CREATE TABLESPACE temp

DATAFILE '/ORADATA/PROD/TEMP01.DBF' SIZE 2G;

-- dropping the tablespace does not remove

-- the file from the file system

DROP TABLESPACE temp;

-- the keyword REUSE is needed to use the existing

-- file created in the previous steps

CREATE TEMPORARY TABLESPACE temp

TEMPFILE '/ORADATA/PROD/TEMP01.DBF' SIZE 2G REUSE ;

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/35489/viewspace-84982/,如需转载,请注明出处,否则将追究法律责任。

请登录后发表评论 登录
全部评论
Oracle , MySQL, SAP IQ, SAP HANA, PostgreSQL, Tableau 技术讨论,希望在这里一起分享知识,讨论技术,畅谈人生 。

注册时间:2007-12-10

  • 博文量
    5595
  • 访问量
    14355062