View large sorting processes in Oracle

Source: Internet
Author: User

Sys @ DEX> select * from v $ statname where name like '% sort % ';
 
STATISTIC # name class STAT_ID
----------------------------------------------------------------------
565 sorts (memory) 64 2091983730
566 sorts (disk) 64 2533123502
567 sorts (rows) 64 3757672740
 
Here we use rows as metric
 
 
Sys @ DEX> select s. sid "session id", st. value "sort (rows)", p. spid "process number"
2 from v $ session s, v $ sesstat st, v $ process p
3 where s. sid = st. sid
4 and s. paddr = p. addr
5 and st. statistic #= 567
6 and s. username = 'dex'
7 order by st. value desc;
 
 
Session id sort (rows) process number
--------------------------------------------------------------------------------------------
30 1818678 2223
155 909404 5573

From column DexterR

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.