Search notes:

Oracle: V$SORT_USAGE

select
  sou.username,
--ses.username,  
--ses.osuser  ,
--ses.sql_id,
--sou.sql_id,
  sou.tablespace,
  sou.contents,
  sou.segtype,
  sou.segfile#,
  sou.segblk#,
  sou.extents,
  sou.blocks,
  nvl(sqa.sql_text,sou.sql_id)  sql_text
from
  v$sort_usage    sou                                            join
  v$session       ses on sou.session_addr = ses.saddr and
                         sou.session_num  = ses.serial#     left join
                        
  v$sqlarea       sqa on sou.sql_id       = sqa.sql_id
order by
  ses.sid
;
Github repository oracle-patterns, path: /Installed/dynamic-performance-views/sort/usage/show.sql

Misc

V$TEMPSEG_USAGE is a synonym that points to V_$SORT_USAGE (which is the view that the synonym V$SORT_USAGE points to):
select * from dba_synonyms where synonym_name = 'V$TEMPSEG_USAGE';

See also

v$sort_segment
Oracle Dynamic Performance Views

Index