Query process for The Current Usage of the PGA Memory : process « System Tables Views « Oracle PL / SQL

Oracle PL / SQL
1. Aggregate Functions
2. Analytical Functions
3. Char Functions
4. Constraints
5. Conversion Functions
6. Cursor
7. Data Type
8. Date Timezone
9. Hierarchical Query
10. Index
11. Insert Delete Update
12. Large Objects
13. Numeric Math Functions
14. Object Oriented Database
15. PL SQL
16. Regular Expressions
17. Report Column Page
18. Result Set
19. Select Query
20. Sequence
21. SQL Plus
22. Stored Procedure Function
23. Subquery
24. System Packages
25. System Tables Views
26. Table
27. Table Joins
28. Trigger
29. User Previliege
30. View
31. XML
Java
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Oracle PL / SQL » System Tables Views » process 
Query process for The Current Usage of the PGA Memory
 
SQL> --
SQL>
SQL> select
  2  program ,pga_used_mem ,pga_alloc_mem ,pga_max_mem
  3  from
  4  v$process
  5  order by pga_used_mem desc;
PROGRAM
--------------------------------------------------
PGA_USED_MEM PGA_ALLOC_MEM PGA_MAX_MEM
------------ ------------- -----------
ORACLE.EXE (SHAD)
     5774313      10843381    25916661

ORACLE.EXE (LGWR)
     4427613       9271617     9926977

ORACLE.EXE (SHAD)
     1220113       1315025     3127161

ORACLE.EXE (MMON)
     1136145       1538885     2652997

ORACLE.EXE (D000)
      653677        659665     1211217

ORACLE.EXE (CJQ0)
      524517        752465     1735505

ORACLE.EXE (SMON)
      519985       1014609     1801041

ORACLE.EXE (RECO)
      488969        883537     1080145

ORACLE.EXE (DBW0)
      362765       1521749     1669849

ORACLE.EXE (q000)
      302965        555857      555857

ORACLE.EXE (CKPT)

PROGRAM
--------------------------------------------------
PGA_USED_MEM PGA_ALLOC_MEM PGA_MAX_MEM
------------ ------------- -----------
      295405       1651229     1651229

ORACLE.EXE (q001)
      223941        359249      359249

ORACLE.EXE (MMNL)
      216201        424785      424785

ORACLE.EXE (QMNC)
      207757        359249      359249

ORACLE.EXE (PMON)
      207373        359249      359249

ORACLE.EXE (MMAN)
      206901        359249      359249

ORACLE.EXE (PSP0)
      206581        359249      359249

ORACLE.EXE (S003)
      200913        200913      293713

ORACLE.EXE (S002)
      200913        200913      293713

ORACLE.EXE (S000)
      200913        200913      293713

ORACLE.EXE (S001)
      200913        200913      293713

ORACLE.EXE (J003)
       86048        621393      621393

ORACLE.EXE (J001)
       86048        856273     1473361

ORACLE.EXE (J000)
       86048        921809     1511633

ORACLE.EXE (J002)
       86048        621393      621393

PSEUDO
           0             0           0


26 rows selected.

SQL> --

 
Related examples in the same category
1. Query v$process a, v$session
2. Get oracle installation path
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.