您的位置:首页 > 其它

How to Shrink the Datafile of Temporary Tablespace

2013-01-31 21:14 591 查看
In this Document

Goal

Solution

Applies to:

Oracle Server - Enterprise Edition - Version: 8.1.7.4 to 11.2.0.2 - Release: 8.1.7 to 11.2

Information in this document applies to any platform.

***Checked for relevance on 16-Dec-2011***

Goal

The database has a program which performs a huge sort operation (e.g. end of the year reporting process). This may cause the TEMP tablespace to grow and occupy most of the space on the file system.

In this example, the report process may run once or twice a year and there is no need to maintain/keep a huge tempfile.

The TEMP tablespace was created with datafiles (dictionary managed tablespace temporary) as AUTOEXTEND ON MAXSIZE UNLIMITED to avoid the Error:

ORA-1652 Text: unable to extend temp segment by %s in tablespace %s.

Attempts have been made to "alter database datafile .. resize" which fail with:

Error: ORA 3297 : file contains <> blocks of data beyond requested RESIZE value


You want to shrink the datafile to utilize the disk space for other tablespaces or other purposes.

Solution

1) Create a new temporary tablespace with desired smaller size:

SQL> create temporary tablespace TEMP1 tempfile 'c:\temp01.dbf' size 100M extent management

local uniform size 128K;


2) If the original tablespace is a default temporary tablespace, set the new tablespace as default temporary tablespace for all users in the database:

SQL> alter database default temporary tablespace TEMP1;


3) If necessary, explicitly re-assign specific users to the new tablespace:

SQL> alter user <username> temporary tablespace TEMP1;


4) Drop the old tablespace:



SQL> drop tablespace temp including contents;


Note:

In Oracle 9i and higher, the drop command can also drop datafiles at OS level:

SQL> drop tablespace temp INCLUDING CONTENTS AND DATAFILES;


NOTE:

Temporary tablespaces should appear "full" after a while in a normally running database.

Extents are allocated once and then managed by the system. Rather than doing the rather expensive operation of "space management" (data dictionary updates), the system will allocate an extent in TEMP and then keep it and manage it itself.

This is normal and to be expected and is not an indication that there is a lack of temporary space.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐