oracle rman 恢复后,重建临时表空间,是怎么一回事? 
重建临时表空间
1、 删除临时表空间EPAPP_TEMP
Drop tablespace epapp_temp;
2、 重建临时表空间EPAPP_TEMP
Create temporary  tablespace epapp_temp tempfile ‘/dev/rvg_data_1’;
3、 将系统缺省的临时表空间设为EPAPP_TEMP
Alter database default tablespace EPAPP_TEMP
4、 删除临时表空间TEMP
Drop tablespace temp;
查看LV 大小
# Lslv lvnamecreate temporary tablespace TEMP2 tempfile '/yxbaknfs/temp' size 10M;
alter database default temporary tablespace TEMP2;
drop tablespace TEMP
create temporary tablespace TEMP tempfile '/dev/rvg1_tmp_1' size 15330M;
alter database default temporary tablespace TEMP;
drop tablespace TEMP
drop tablespace EPADV_TMP;
create temporary tablespace EPAPP_TEMP tempfile '/dev/rvg1_tmp_1' size 15330M;不太理解 用意何在? size 15330m  怎么来的? 也就是谁的大小? 谢谢