Get VSAM file info
search cancel

Get VSAM file info

book

Article ID: 196378

calendar_today

Updated On:

Products

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

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