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

HLIST Utility In Batch


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

New User


Joined: 26 Aug 2015
Posts: 55
Location: India

PostPosted: Fri Apr 07, 2017 3:38 pm
Reply with quote

Hi,

I am trying to run HLIST utility in batch mode to identify how many files under an HLQ are on migrate volume1 and on migrate volume 2 , there last reference date and space occupied by these . If I give HLQ.* in the DS name as below it error for Invalid data set name . I remember running like this in the past like giving HLQ.A* , HLQ.B* etc.

Am I missing something now.

/
Code:
/HLIST  EXEC PGM=IKJEFT01,DYNAMNBR=30
//SYSTSPRT  DD SYSOUT=*
//SYSTSIN   DD *
HLIST DS('HLQ.*') BCDS ODS('output.dataset')
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Fri Apr 07, 2017 3:50 pm
Reply with quote

Instead of DS('HLQ.*') why not use LEVEL(HLQ) ?
Back to top
View user's profile Send private message
Pedro

Global Moderator


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

PostPosted: Fri Apr 07, 2017 10:00 pm
Reply with quote

I do not think HLIST supports wildcard characters in the way that you recall.

Use LEVEL instead:
Code:
HLIST LEVEL('hlq') BOTH
Back to top
View user's profile Send private message
Virendra Shambharkar

New User


Joined: 26 Aug 2015
Posts: 55
Location: India

PostPosted: Mon Apr 10, 2017 2:34 pm
Reply with quote

Thanks for the inputs.

If I give

Code:
HLIST LEVEL(HLQ)


it gives me output as

Code:

BACKUP      FROM      BACKUP BACKUP    SYS   GEN
VOLUME     VOLUME   DATE      TIME        CAT    NMBR



etc. I am looking for information like Space occupied in GB and last referenced date. What parameters should be given to get this information . I had got this information in the past.
Back to top
View user's profile Send private message
vasanthz

Global Moderator


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

PostPosted: Tue Apr 11, 2017 12:18 am
Reply with quote

Code:

BACKUP      FROM      BACKUP BACKUP    SYS   GEN
VOLUME     VOLUME   DATE      TIME        CAT    NMBR


You get this because this is from BCDS. Backup control dataset stores information about the HSM backups that have been performed on the dataset.

You need to list the migrated control dataset information - MCDS.
For all MCDS information. use
Code:
hlist level(HLQ) MCDS

For ML1 you can use
Code:
hlist level(HLQ) MCDS select(ml1)

for ML2
Code:
hlist level(HLQ) MCDS select(ml2)
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 How to get a stack trace on a looping... ABENDS & Debugging 5
No new posts Calling Java method from batch COBOL ... COBOL Programming 5
No new posts REASON 00D70014 in load utility DB2 6
No new posts Help in Automating Batch JCL jobs mon... JCL & VSAM 3
No new posts ISRSUPC search utility - using high l... TSO/ISPF 2
Search our Forums:

Back to Top