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

CPU Usage in 3.4 of xxx.*


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

Global Moderator


Joined: 28 Aug 2007
Posts: 1742
Location: Tirupur, India

PostPosted: Wed Mar 25, 2009 8:21 pm
Reply with quote

Hi,

1) I have a requirement to extract all the PDS(PDS only) that have the HLQ as XXX.*

2) With that list we have a requirement to extract all the PDS that use more than 80% allocated space.

For the first requirement,

I used 3.4 option and gave xxx.* with include Additional qualifiers option set to YES.

It was a huge list and tried to put the SAVE LIST command, but it was taking lots of time (I mean LOTS LOTS LOTS) and i cancelled it.

Will this operation load the mainframe too much? (I mean affecting production jobs)
I have very limited knowledge with catalogs, Will this occupy the catalog too much that it affects production job anyway.


I am aware of second requirement, but not sure about first.
Any advice please?

Thanks in advance,
Back to top
View user's profile Send private message
ofer71

Global Moderator


Joined: 27 Dec 2005
Posts: 2358
Location: Israel

PostPosted: Wed Mar 25, 2009 8:40 pm
Reply with quote

You can use LMDLIST service with the STATS option.

O.
Back to top
View user's profile Send private message
CICS Guy

Senior Member


Joined: 18 Jul 2007
Posts: 2146
Location: At my coffee table

PostPosted: Wed Mar 25, 2009 8:41 pm
Reply with quote

Sometimes I've needed to locate certain SYS1. datasets, and not knowing the second qualifier, I'd do the same 3.4 and got back a large return and it did take some time - mostly wall clock - because the request ends up searching just about all catalogs in the system.
Slow response does not always mean high CPU.....
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Wed Mar 25, 2009 8:51 pm
Reply with quote

If you have access to DCOLLECT records you can do this.

use SORT to select only the records you want
Code:

//SYSIN    DD *                                                       
 OPTION  VLSCMP                                                       
 SORT    FIELDS=(29,44,CH,A)                                           
 INCLUDE COND=(9,2,CH,EQ,C'D ',AND,            * D RECORD             *
               79,1,BI,ALL,B'00000010',AND,    * PDS / PDSE ONLY      *
               29,4,CH,EQ,C'XXX.')             * DSN STARTS WITH      *
/*                                                                     


Also in the DCOLLECT records are space allocations and utilisations which will enable you to get the info that you want.

Take a look through the DFSORT documents as I recall Frank has one or two great examples using DCOLLECT data for space related reporting.

ISMF may well be able to get you the information too.
Back to top
View user's profile Send private message
vasanthz

Global Moderator


Joined: 28 Aug 2007
Posts: 1742
Location: Tirupur, India

PostPosted: Wed Mar 25, 2009 10:12 pm
Reply with quote

Hi,

Thanks 2 Ofer, Expact, "THE CICS GUY". I have no idea of DCOLLECT or LMSLIST.
I will read, try them out and let you know the results.

Thanks 4 ur time.
Back to top
View user's profile Send private message
vasanthz

Global Moderator


Joined: 28 Aug 2007
Posts: 1742
Location: Tirupur, India

PostPosted: Tue Mar 31, 2009 1:51 am
Reply with quote

Hi I tried the DCOLLECT and processed the O/p with REXX.. thanks a lot icon_smile.gif

www.ibmmainframes.com/about30787.html
this thread was also very useful
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 STEM usage in REXX CLIST & REXX 14
No new posts z/OS Modules Usage report using SMF 42 DFSORT/ICETOOL 2
No new posts Concatenate 2 fields (usage national)... COBOL Programming 2
No new posts JCL and TAPE drives: how to maximize ... JCL & VSAM 9
No new posts Usage of BINSEARCH PL/I PL/I & Assembler 1
Search our Forums:

Back to Top