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

recalling migrated datasets at the background


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

New User


Joined: 15 Sep 2008
Posts: 17
Location: Chennai

PostPosted: Fri May 29, 2009 9:12 pm
Reply with quote

Is it possible to recall the datasets that are migrated at the background using a process written in REXX and meanwhile access the dataset without waiting till it is recalled

regards
bhuvaneswari
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Fri May 29, 2009 9:24 pm
Reply with quote

Why not use HRECALL on an ISPF 3.4 listing?

And what do you mean by this?
Quote:
meanwhile access the dataset without waiting till it is recalled
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Sat May 30, 2009 12:12 am
Reply with quote

Hello,

Quote:
and meanwhile access the dataset without waiting till it is recalled
Of course not. . . How would you invision accessesing a dataset that is not "there". . . icon_confused.gif
Back to top
View user's profile Send private message
mjadwani2785

New User


Joined: 28 Apr 2009
Posts: 89
Location: Noida , Dublin

PostPosted: Wed Jun 03, 2009 12:35 pm
Reply with quote

HI...You can recall it using HRECALL that works in background. If you are attempting to view the info of migrated dataset this will stop your session till the time migrated dataset is recalled.
You can also use utility IKJEFT01 to make jcl and use HRECALL to do same work in batch. icon_smile.gif
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


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

PostPosted: Wed Jun 03, 2009 2:33 pm
Reply with quote

May be this JCL can be of your choice:
Code:
//RECALL EXEC PGM=IKJEFT01,DYNAMNBR=20,TIME=(9)           
//SYSTSPRT DD SYSOUT=*                                     
//SYSPRINT DD SYSOUT=*                                     
//SYSUDUMP DD SYSOUT=*                                     
//SYSTSIN DD *                                             
 HRECALL 'Dataset to recall' NOWAIT
/*       
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Wed Jun 03, 2009 7:21 pm
Reply with quote

Hello,

No matter how the dataset is recalled - it cannot be accessed until after the recall.

The original question was how to access the dataset without waithing for the recall.
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


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

PostPosted: Thu Jun 04, 2009 12:41 pm
Reply with quote

May be I get it wrong -- I thought he wants to recall DSN1 and at the same time wants to work with DSN2 and recall-process for DSN1 should happen in "background". icon_neutral.gif
Back to top
View user's profile Send private message
dick scherrer

Moderator Emeritus


Joined: 23 Nov 2006
Posts: 19244
Location: Inside the Matrix

PostPosted: Thu Jun 04, 2009 10:16 pm
Reply with quote

Hi Anuj,

Quote:
and meanwhile access the dataset without waiting till it is recalled
From the original post.

Sounds like the same dataset, but i could be missing something icon_confused.gif

d
Back to top
View user's profile Send private message
Robert Sample

Global Moderator


Joined: 06 Jun 2008
Posts: 8696
Location: Dubuque, Iowa, USA

PostPosted: Thu Jun 04, 2009 10:41 pm
Reply with quote

Dick, if so I missed it too -- I interpreted that statement the same way you did.
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 Merging 2 datasets into one DFSORT/ICETOOL 1
No new posts How Can I Recall a Migrated Data Set ... PL/I & Assembler 3
No new posts PL/I, VB Datasets and the RDW PL/I & Assembler 4
No new posts how to get list of all VSAM/non-VSAM ... JCL & VSAM 13
No new posts define 1 DCB parms for multiple outpu... JCL & VSAM 9
Search our Forums:

Back to Top