View previous topic :: View next topic
|
Author |
Message |
Akil
New User
Joined: 24 Oct 2023 Posts: 22 Location: India
|
|
|
|
For application objects ,I can check catalog table to know if it is been converted to 10 byte or not,
How do we verify/confirm/know if the BSDS ,catalog & directory has been converted to 10 byte or not? Is there anyway to see that. |
|
Back to top |
|
|
Pedro
Global Moderator
Joined: 01 Sep 2006 Posts: 2585 Location: Silicon Valley
|
|
|
|
I am not sure if this is what you need, but I seem to recall that RBA information is returned by the LISTCAT command.
Code: |
LISTCAT ENT('my.vsam') ALL |
|
|
Back to top |
|
|
dneufarth
Active User
Joined: 27 Apr 2005 Posts: 420 Location: Inside the SPEW (Southwest Ohio, USA)
|
|
|
|
this is mentioned in Red Book SG24-8180-00
www.redbooks.ibm.com/redbooks/pdfs/sg248180.pdf
Code: |
DSNJU004 to check if conversion has run
You can use the Print Log Map (DSNJU004) stand-alone utility to check if the conversion for a
specific subsystem or member was performed. See the JCL shown in Example 3-7.
Example 3-7 DSNJU004 JCL
//DSNTLOG EXEC PGM=DSNJU004
//STEPLIB DD DISP=SHR,DSN=your.SDSNEXIT
// DD DISP=SHR,DSN=your.SDSNLOAD
//SYSUT1 DD DISP=SHR,DSN=your.BSDS01
//SYSPRINT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYSIN DD *
//* |
|
|
Back to top |
|
|
|