IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

Memory space was occupied to execute a Program


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
noorkh

New User


Joined: 06 Mar 2006
Posts: 76
Location: Chennai

PostPosted: Fri Oct 06, 2006 3:08 pm
Reply with quote

Hi,

I need to verify how much memory space was occupied or used to execute a particular program.

Is there any way to find out?

Cheers,
Noor
Back to top
View user's profile Send private message
MFRASHEED

Active User


Joined: 14 Jun 2005
Posts: 186
Location: USA

PostPosted: Sat Oct 07, 2006 1:43 am
Reply with quote

I think these gives you program region usage, corrections welcome.

For a batch job, after job completes look in MESSAGES log

Code:

IEF374I STEP/STP0200 /STOP  2006279.0511 CPU    4MIN 50.11SEC SRB    0MIN 02.50SEC VIRT   412K SYS   500K EXT    3988K SYS   10188K



The first two numbers (VIRT 412K SYS 500K) are subtotals of your below the line region. The
second two numbers (EXT 3988K SYS 10188K) are subtotals of your above the line region. Add them
together to get the total below and above the line region.
and here is decription of related fields

Code:

REAL/VIRT xxxxK  SYS xxxxK                                                     
    REAL/VIRT xxxxK indicates the maximum kilobytes of storage (high-water     
    mark) that a step used from the user region of the private area. SYS       
    xxxxK indicates the maximum kilobytes of storage (high-water mark)         
    that the address space used from the following areas: LSQA, SWA, and       
    high private area.  The word REAL appears if ADDRSPC=REAL was               
    specified; otherwise, VIRT appears.                                         
                                                                               
EXT xxxxK  SYS xxxxK                                                           
    EXT xxxxK indicates the maximum kilobytes of storage (high-water mark)     
    that a step used from the user region of the extended private area.         
    SYS xxxxK indicates the maximum kilobytes of storage (high-water mark)     
    that the address space used from the following areas: extended LSQA,       
    extended SWA, and extended high private area.                               
                                                                               
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts Replace each space in cobol string wi... COBOL Programming 3
No new posts Using API Gateway from CICS program CICS 0
No new posts Execute secondary panel of sdsf with ... CLIST & REXX 1
No new posts DB2 Event passed to the Application P... DB2 1
No new posts How to pass the PARM value to my targ... COBOL Programming 8
Search our Forums:

Back to Top