1、当指定临时表为on commit PReserve rows得时候(会话级),在当前session中像要将该表进行drop得时候,Oracle提示: drop table student*ERROR at line 1: ORA-14452: attempt to create, alter or drop an index on temporary table already in use假如你要删除这样表,方法有两个:一是退出这个SESSION,然后再次登陆,再执行DROP TABLE命令;二是在当前SESSION中先进行truncate,即模拟退出SESSION得时候ORACLE得操作(截断数据),再执行DROP TABLE即可。2、所有临时数据将存放在当前用户得临时表空间下(每一个用户创建得时候可以执行表空间)。 3、创建临时表得时候也可以指定某一个临时表空间。