View previous topic :: View next topic |
Author |
Message |
naveen Beginner
Joined: 03 Dec 2002 Posts: 90 Topics: 31
|
Posted: Tue Jan 28, 2003 9:28 am Post subject: VSAM file properties |
|
|
How to know who created a VSAM file and also other properties of any VSAM file?
We can easily find for a PDS ; which ID created it and also other stats. like size , creation date ,changed etc. related to any PDS. How can we get similar stats. for VSAM? |
|
Back to top |
|
|
kolusu Site Admin
Joined: 26 Nov 2002 Posts: 12375 Topics: 75 Location: San Jose
|
Posted: Tue Jan 28, 2003 9:42 am Post subject: |
|
|
Naveen,
Code: |
TSO LISTCAT ENT('YOUR VSAM FILE') ALL
|
or in batch mode you can try the following JCL
Code: |
//STEP0100 EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//SYSIN DD *
LISTCAT ENT('YOUR VSAM FILE') ALL
/*
|
Hope this helps...
cheers
kolusu |
|
Back to top |
|
|
|
|