| IBM MAINFRAME HELP & SUPPORT FORUMS Technical Forums for IBM Mainframe Applications like COBOL, JCL, CICS, DB2, FileAid, DFSORT, Endevor, Xpediter, CoolGen, CA-7&11, AbendAid, IMS, IDMS, PL/I, MqSeries, SyncSort, Assembler, ChangeMan, Easytrieve, InterTest, REXX, CLIST etc...
|
| View previous topic :: View next topic |
| Author |
Message |
arvind.m
Joined: 28 Aug 2008
Posts: 11
Location: Hyderabad
|
| Posted: Thu Aug 28, 2008 7:43 pm Post subject: Utility to give the information of the GDG files |
|
|
Hi all,
is there any utility to give the information of the GDG files? should give which generation has data and which does not have.
i used LISTCAT but this utility did not give me the information i wanted. if i have 5 generation i want to know in which generation have data and which does not have data.
thanks, |
|
| Back to top |
|
expat
Joined: 14 Mar 2007
Posts: 3544
Location: Brussels once more ...
|
| Posted: Thu Aug 28, 2008 7:46 pm Post subject: |
|
|
No, LISTCAT will not tell you which files have data.
You need to test each file individually to see if the file is populated. |
|
| Back to top |
|
arvind.m
Joined: 28 Aug 2008
Posts: 11
Location: Hyderabad
|
| Posted: Thu Aug 28, 2008 7:54 pm Post subject: |
|
|
individually yes i know that!
but like we use 3.4 option and when we give the base name to the right it will show tracks% .
if tracks% is 0 then dataset is empty
if tracks% is100 then it has some data...
so i want this information by a utility (not individual checking).
thanks,[/quote] |
|
| Back to top |
|
Robert Sample
Joined: 06 Jun 2008
Posts: 943
Location: Atlanta, GA
|
| Posted: Thu Aug 28, 2008 8:06 pm Post subject: |
|
|
| Arvind, what you're looking at through ISPF 3.4 option is individual dataset usage data; you can replicate this in batch via the DCOLLECT command in IDCAMS. |
|
| Back to top |
|
arvind.m
Joined: 28 Aug 2008
Posts: 11
Location: Hyderabad
|
| Posted: Thu Aug 28, 2008 8:33 pm Post subject: |
|
|
can you give me the syntax for getting info of all the generation for GDG base. i got one but i want correct syntax (because i did not used this earlier. pls).
Code:
//STAP0015 EXEC PROC=IDCAMS
//SYSUDUMP DD SYSOUT=*
//DCOLOUT DD DSN=VINF0PRD.BLVB04.B8D300.DCOLLECT,DISP=OLD
//SYSIN DD *
DCOLLECT OUTFILE(DCOLOUT) VOLUMES(*) NODATAINFO
/*
Please help me to get the correct syntax.
thanks, |
|
| Back to top |
|
Robert Sample
Joined: 06 Jun 2008
Posts: 943
Location: Atlanta, GA
|
| Posted: Thu Aug 28, 2008 9:02 pm Post subject: |
|
|
From the manual: Quote: NODATAINFO
says that no data set information records are generated or written to the output data set. Use this parameter if you want only volume information generated for the given volumes or storage groups.
Abbreviation: NOD
Try changing this to NOVOLUMEINFO since you are specifically wanting data set information. |
|
| Back to top |
|
arvind.m
Joined: 28 Aug 2008
Posts: 11
Location: Hyderabad
|
| Posted: Thu Aug 28, 2008 9:04 pm Post subject: |
|
|
| ok and how or where do i give GDG base name in that syntax.. |
|
| Back to top |
|
Robert Sample
Joined: 06 Jun 2008
Posts: 943
Location: Atlanta, GA
|
| Posted: Thu Aug 28, 2008 9:12 pm Post subject: |
|
|
| You don't; you have to look in the output file for the GDG files one by one to get the space usage. DCOLLECT works on volumes or storage groups but then you have to do some filtering based on what you're looking for. |
|
| Back to top |
|
| |
THIS IS AN ARCIVE FORUM IN READ ONLY MODE. IF YOU WANT TO ASK YOUR DOUBTS USE THE ACTUAL FORUM
|