temp损坏  

临时表空间即使不存在 系统也能运行 只是部分功能需要临时表空间的不能使用

系统默认临时表空间系统恢复后 可能和临时文件脱节


temp历史


  oracle 8

没有临时表空间 排序用datafile

  oracle 8I

有临时表空间 但要指明用哪个排序

  oracle 9I

临时表空间temp被设置成默认

  oracle 10G

每个用户有了默认数据表空间

temp全局默认 并增加了临时表空间组




1.建立新的

SQL> create temporary tablespace temp2 tempfile '/erikxue/temp02.dbf' size 30M;


Tablespace created.


SQL>

2.改为默认

SQL> select * from database_properties where rownum <= 4;


PROPERTY_NAME       PROPERTY_VALUE    DESCRIPTION

------------------------------ -------------------- ----------------------------------------

DICT.BASE       2    dictionary base tables version #

DEFAULT_TEMP_TABLESPACE        TEMP   Name of default temporary tablespace

DEFAULT_PERMANENT_TABLESPACE   USERS    Name of default permanent tablespace

DEFAULT_TBS_TYPE       SMALLFILE    Default tablespace type


SQL>

SQL> alter database default temporary tablespace temp2;


Database altered.


SQL> select * from database_properties where rownum <= 4;


PROPERTY_NAME       PROPERTY_VALUE    DESCRIPTION

------------------------------ -------------------- ----------------------------------------

DICT.BASE       2    dictionary base tables version #

DEFAULT_TEMP_TABLESPACE       TEMP2   Name of default temporary tablespace

DEFAULT_PERMANENT_TABLESPACE   USERS    Name of default permanent tablespace

DEFAULT_TBS_TYPE       SMALLFILE    Default tablespace type


SQL>

3.删除旧的 (不能立即删除 可能之前有临时数据存在于临时表空间,待临时数据使用完毕,再删除即可)

SQL> drop tablespace temp including contents and datafiles;


Tablespace dropped.


SQL>


你可能感兴趣的:(oracle,where,create,数据表,空间,erikxue)