by rajufis_01 » Mon Jul 09, 2012 3:19 pm
Thanks for the reply….
Well coming to my requirement
I have one VSAM file In that VSAM file I want to update 3 fields, here the problems records are in millions so that previously in my company we have utility
Called FILEAID was there to do this but now it is disabled, here is the previous code before how we update thru FILEAID at a time millions of records with one JCL .
/PS180 EXEC PGM=FILEAID,COND=(0,LT)
//SYSPRINT DD SYSOUT=*
//SYSLIST DD SYSOUT=*
//DD01 DD DSN=G1OL00AT.FORP.YDGECLST.RAJ.TES,
// DISP=SHR
//SYSIN DD *
$$DD01 UPDATEALL FORM=MULTI,
IF=(1,EQ,C'05'),
REPL=(5,C'999')
/*
//*
is there any other way to achive like this??? now in my comapny we are using INSYNC inplace of FILEAID.