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

increasing the size of the session manager stream


IBM Mainframe Forums -> TSO/ISPF
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2546
Location: Silicon Valley

PostPosted: Wed Apr 04, 2012 12:33 am
Reply with quote

The default size of the session manager stream only allows me to capture
about 1600 lines of a rexx trace. I wish to capture more.

Consider this simple test which will produce 20,000 lines of output:
Code:

/* rexx */
Do x = 1 to 20000
  Say x 'A slow-moving storm in the southern Rockies',
        ' produces snow and severe thunderstorms.'
End


And afterwards, use this to view the results:
Code:

/* rexx */
parse arg num
listds = "REXX.LIST"
Address TSO
"SMCOPY FS(TSOOUT) TDS("listds")"
"SMPUT 'c.s tsoout clear' SMIN"

Address ISPEXEC
"VIEW dataset("listds")"



Although 20,000 lines are produced, only 1600 are saved because of the
stream size.

I have tried to change the session manager stream size:
1. I copied ADFMDFLT to my PEDRO.MISC.LOAD dataset.

2. run SPZAP to increase both the number of lines and the number of
bytes, a 20 X increase.
Code:

//STEP1   EXEC PGM=AMASPZAP
//SYSPRINT DD SYSOUT=H
//SYSLIB DD DSN=PEDRO.MISC.LOAD,DISP=SHR
//SYSIN DD *
  NAME  ADFMDFLT ADFMDFLT
  VER 1674 00024000
  REP 1674 002D0000
  VER 1678 00000FA0
  REP 1678 00013880
/*EOF


3. add PEDRO.MISC.LOAD to our logon proc member as the STEPLIB dataset.

4. logon again

5. run the test again.


But I am not able to increase the number of lines that are captured.
Does anyone have any insight into what I need to do?

ADFMDFLT is discussed in the TSO/E Customization manual.
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2546
Location: Silicon Valley

PostPosted: Wed Apr 04, 2012 6:42 am
Reply with quote

Answer: ADFMDFLT needs to reside in an APF authorized library.
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 -> TSO/ISPF

 


Similar Topics
Topic Forum Replies
No new posts Using Java/C/C++ to retrieve dataset ... Java & MQSeries 6
No new posts Find the size of a PS file before rea... COBOL Programming 13
No new posts Question for file manager IBM Tools 7
No new posts file manager is doing string conversion IBM Tools 3
No new posts How to Reformat a file using File Man... All Other Mainframe Topics 14
Search our Forums:

Back to Top