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

Obsolete

v$sort_usage was obsoleted in Oracle 9.2 in favor of v$tempseg_usage.
In fact, V$TEMPSEG_USAGE is a synonym that points to V_$SORT_USAGE (which is also 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

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1759446525, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/installed/dynamic-performance-views/sort/usage/index(72): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78