Temporary tablespace is empty解决办法
 
    什么时候会使用到临时表空间:
    第一:在pl/sql中使用desc命令
    第二:在pl/sql中使用analyze命令
    第三:   在pl/sql中使用执行计划
 
    如果是没有临时表空间后者临时表可以通过下面sql语句查看
    select name from v$tablespace;
    select * from dba_temp_files; 
    解决办法:
     第一步:create temporary tablespace xx tempfile xxx size xx
    第二步:alter user xx temporary tablespace xx
   这样就可以用了