IBM Mainframe Forum Index
 
Log In
 
IBM Mainframe Forum Index Mainframe: Search IBM Mainframe Forum: FAQ Register
 

To detect records in Error files


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
raghavendra_p_sarvade

New User


Joined: 17 Oct 2006
Posts: 32

PostPosted: Thu Feb 28, 2008 3:21 pm
Reply with quote

I have 40 error files. I need to set up a job which will abend if there is a record in any of the 40 files and also show which file exactly contained that record.

Can someone help me out?
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Thu Feb 28, 2008 3:23 pm
Reply with quote

Search the forum for empty dataset and that will give you a few good clues.
Back to top
View user's profile Send private message
raghavendra_p_sarvade

New User


Joined: 17 Oct 2006
Posts: 32

PostPosted: Thu Feb 28, 2008 4:05 pm
Reply with quote

I tried the below one. But it doesn't show which file had record.

Any suggestions?

//STEP1 EXEC PGM=IDCAMS
//INPUT DD DSN=FILE1,DISP=SHR
// DD DSN=FILE2,DISP=SHR
// DD DSN=FILE3,DISP=SHR
// DD DSN=FILE4,DISP=SHR
// DD DSN=FILE5,DISP=SHR
// DD DSN=FILE20,DISP=SHR
// DD DSN=FILE40,DISP=SHR
//AMSDUMP DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
PRINT -
INFILE(INPUT) -
COUNT(1)
/*
//STEP2 EXEC PGM=IEBGENER,COND=(0,NE)
//SYSUT1 DD DUMMY
//SYSUT2 DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
ABOVE STEP HAVE RECORDS SO JOB ABENDED LOOK AT THE DATASET CREATED*
/*
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Thu Feb 28, 2008 4:17 pm
Reply with quote

are You looking for a specific record, or just empty/non empty
the "thing" will happen for only one dataset or for multiple dataset ?

the requirement might be clear for You, but it' s not clear for all

why abend the job, isn' t a return code enough

if only strings are being resarched why not use superc like this ...
Code:
//SEARCH  EXEC PGM=ISRSUPC,                                           
//            PARM=(SRCHCMP,
//            '')
//NEWDD  DD DISP=SHR,DSN=file1
//       DD DISP=SHR,DSN=file2
//       DD DISP=SHR,DSN=file.....
//       DD DISP=SHR,DSN=filen
//OUTDD  DD SYSOUT=(A)
//SYSIN  DD *
SRCHFOR  'STRING1'
SRCHFOR  'STRING2'
SRCHFOR  'STRING3'
...... add as many as you need

Code:
Back to top
View user's profile Send private message
View previous topic :: :: View next topic  
Post new topic   Reply to topic View Bookmarks
All times are GMT + 6 Hours
Forum Index -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
No new posts To fetch records that has Ttamp value... DFSORT/ICETOOL 4
No new posts ICETOOL returns no records JCL & VSAM 1
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 3
No new posts Compare 2 files(F1 & F2) and writ... JCL & VSAM 8
No new posts Error to read log with rexx CLIST & REXX 11
Search our Forums:

Back to Top