另外你最好是充分优化你的sql.以使其减小disk sort

解决方案 »

  1.   

    在windows下形式如下:
    alter tablespace TEMPORARY_DATA add datafile 'C:\ORANT\DATABASE\tmep_data.dat' size 256M Autoextend on next 10m;
      

  2.   

    偶搞定啦
    sql>create temporary tablespace temp_data 
           tempfile 'e:\t1.tmp' size10m;sql>alter database default temporary tablespace temp_data;sql>drop tablespace temp including contents and datafiles;sql>create temporary tablespace temp01 
           tempfile 'f:\oracle\oradata\db_name\temp01.tmp' size100m;sql>alter database default temporary tablespace temp;sql>drop tablespace temp_data including contents and datafiles;
    依然谢谢各位!!!