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

How to recall a dataset which is migrated in to a Volume


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

New User


Joined: 25 Feb 2008
Posts: 2
Location: Chennai

PostPosted: Sat Aug 16, 2008 11:08 am
Reply with quote

How to recall a dataset which is migrated in to Volume "MIGRATE2"
Back to top
View user's profile Send private message
Terry Heinze

JCL Moderator


Joined: 14 Jul 2008
Posts: 1249
Location: Richfield, MN, USA

PostPosted: Sat Aug 16, 2008 11:42 am
Reply with quote

HRECALL as a line command on a 3.4 panel should do it, assuming your userid has the required authority.
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


Joined: 22 Apr 2006
Posts: 6250
Location: Mumbai, India

PostPosted: Mon Aug 18, 2008 11:32 am
Reply with quote

Hi,

You can use this batch JOB as well, at times it was preferred..
Code:
//RECALL EXEC PGM=IKJEFT01,DYNAMNBR=20,TIME=(9)
//SYSTSPRT DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYSTSIN DD *
HRECALL 'mention the dataset name's common part ' NOWAIT
/*


Hope this helps...
Back to top
View user's profile Send private message
akmtcs

New User


Joined: 25 Feb 2008
Posts: 2
Location: Chennai

PostPosted: Mon Aug 18, 2008 3:58 pm
Reply with quote

Thanks for your help ....

Anuj D. wrote:
Hi,

You can use this batch JOB as well, at times it was preferred..
Code:
//RECALL EXEC PGM=IKJEFT01,DYNAMNBR=20,TIME=(9)
//SYSTSPRT DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYSTSIN DD *
HRECALL 'mention the dataset name's common part ' NOWAIT
/*


Hope this helps...
Back to top
View user's profile Send private message
expat

Global Moderator


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

PostPosted: Mon Aug 18, 2008 4:49 pm
Reply with quote

Also take a lookey see at the RFEXX code that I have posted into the JCL forum.

Thread - Migrated dataset delete
Back to top
View user's profile Send private message
Pedro

Global Moderator


Joined: 01 Sep 2006
Posts: 2547
Location: Silicon Valley

PostPosted: Mon Aug 18, 2008 10:12 pm
Reply with quote

You should know that the system will recall the dataset when it is referenced. If the name is in the JCL, the job will wait quietly until the dataset is recalled.
Code:
//RECALL EXEC PGM=IKJEFT01,DYNAMNBR=20,TIME=(9)
//SYSTSPRT DD DISP=SHR,DSN=my.pds


It seems like a waste of human resources to recall it manually.
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 FINDREP - Only first record from give... DFSORT/ICETOOL 3
No new posts Map Vols and Problem Dataset All Other Mainframe Topics 2
No new posts Allocated cylinders of a dataset DB2 12
No new posts Sort First/last record of a subset th... DFSORT/ICETOOL 7
No new posts Reading dataset in Python - New Line ... All Other Mainframe Topics 22
Search our Forums:

Back to Top