expat
Global Moderator
Joined: 14 Mar 2007 Posts: 2435 Location: Brussels once more ...
|
|
|
|
The system will create SMF records for each and every event that happens on the system, unless they have been switched off for particular functions, which is most rare.
Type 61 records are for the creation of a catalog record, i.e. a dataset is being cataloged which in 99.99% of cases means being created.
The job below which you could not find, or perhaps bother looking for, will extract the information from the required SMF records to answer your question.
May I suggest that you swat up on SMF data as it really is quite useful at times.
| Code: |
//EXTRACT EXEC PGM=SORT
//SYSOUT DD SYSOUT=*
//SORTIN DD DSN=Dumped SMF dataset
//SORTOUT DD DSN=Your output dataset
// DISP=(,CATLG,DELETE),
// SPACE=(TRK,(75,75),RLSE),
// RECFM=FB,LRECL=330
//SYSIN DD *
SORT FIELDS=COPY
INCLUDE COND=(6,1,CH,EQ,X'3D',AND,
121,44,SS,EQ,C'Find this DSN')
OUTFIL OUTREC=(51,8,X,67,8,X,121,44)
|
|
|