View previous topic :: View next topic |
Author |
Message |
Karumanchi Beginner
Joined: 13 Mar 2007 Posts: 9 Topics: 3
|
Posted: Thu Jan 29, 2009 5:32 am Post subject: NDM - Dataset migration |
|
|
I have a job which transfers the file from thru NDM utility. While doing the job abends as dataset is migrated and gets the following message from SS
'DMGALRCL has issued a data set recall' . After some time if we restart the job goes thru fine as the datset gets freed.
Is there any way we can avoid the abend at first instance. |
|
Back to top |
|
 |
expat Intermediate

Joined: 01 Mar 2007 Posts: 475 Topics: 9 Location: Welsh Wales
|
Posted: Thu Jan 29, 2009 6:37 am Post subject: |
|
|
Have you considered making sure that the dataset is not migrated before you start ? _________________ If it's true that we are here to help others,
then what exactly are the others here for ? |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
Posted: Thu Jan 29, 2009 11:19 am Post subject: |
|
|
Karumanchi,
Add HRECALL step to recall the dataset before the NDM process
Code: |
//STEP0100 EXEC PGM=IKJEFT01
//SYSTSPRT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYSTSIN DD *
HRECALL 'your migrated dsname' WAIT
/* |
Kolusu |
|
Back to top |
|
 |
Karumanchi Beginner
Joined: 13 Mar 2007 Posts: 9 Topics: 3
|
Posted: Thu Jan 29, 2009 11:33 pm Post subject: |
|
|
Thanks Kolusu. Will check this and let u know. |
|
Back to top |
|
 |
|
|