Get VSAM file info
book
Article ID: 196378
calendar_today
Updated On:
Products
CA OPS/MVS Event Management & Automation
Issue/Introduction
Is there a way to access a VSAM file so we can create alerts when it gets a certain percent full?
Environment
Release : 13.5
Component : OPS/MVS
Resolution
Perhaps you can can create a rule that invokes a REXX program and issue a LISTC to get information:
ADDRESS TSO
'LISTC ENT(vsam-data-set-name) ALL'
DO QUEUED()
PULL LINE
SAY LINE
END
Feedback
thumb_up
Yes
thumb_down
No