hi all
I have create a new temp tablespace temp02, and
ALTER DATABASE DEFAULT TEMPORARY TABLESPACE TEMP02;
but I found many inactive session still using old temp tablespace, but they are inactive
SELECT b.tablespace,b.segfile#,b.segblk#,b.blocks,a.sid,a.serial#,a.username,a.osuser, a.status,a.logon_time FROM v$session a,v$sort_usage b where a.saddr = b.session_addr
can I drop the old tablespace without killing those inactive session ?