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

Recovering data set from migrated2


IBM Mainframe Forums -> TSO/ISPF
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
ssprabhu

New User


Joined: 25 Apr 2005
Posts: 67
Location: pune

PostPosted: Sat Aug 26, 2006 10:53 pm
Reply with quote

HOW TO RECOVER THE DATA SETS FROM MIGRATED2 STATE.

ps : OTHER THAN HRECALL.
Back to top
View user's profile Send private message
priyesh.agrawal

Senior Member


Joined: 28 Mar 2005
Posts: 1448
Location: Chicago, IL

PostPosted: Sun Aug 27, 2006 2:18 am
Reply with quote

Put a "B" for browse and Press Enter icon_wink.gif
Back to top
View user's profile Send private message
Sahoo

New User


Joined: 08 Jun 2006
Posts: 53

PostPosted: Sun Aug 27, 2006 12:05 pm
Reply with quote

Type HRECALL against the datasets. It will take some time to recover from tape to DASD. Then You can view the dataset.
Back to top
View user's profile Send private message
neeraj.cobol

New User


Joined: 18 Aug 2006
Posts: 2
Location: Bangalore

PostPosted: Mon Aug 28, 2006 11:56 am
Reply with quote

you can recover dataset from tape to DASD by sorting also.

SORT FIELDS=COPY
DD1 DSN=TAPE.FILE,UNIT=TAPE
DD2 DSN=DASD.FILE,UNIT=DASD


u can also do this by IEBGENER,IEBCOPY.....WITH SOME OPTIONS....
Back to top
View user's profile Send private message
prodigy

New User


Joined: 15 May 2006
Posts: 28

PostPosted: Wed Aug 30, 2006 5:25 pm
Reply with quote

HRECALL is a better idea
Back to top
View user's profile Send private message
MainframeHelp4_u

New User


Joined: 15 Aug 2006
Posts: 25

PostPosted: Sat Sep 02, 2006 2:44 pm
Reply with quote

1) HRECALL is the best option

2) Some mainframes work with "R" option

3) SORT in will be the TAPE DSN & SORTOUT on DASD.

Try these 3 options.. depends on u r requirement

Cheers
Mainframehelp4_u
Back to top
View user's profile Send private message
baidyanath_biswas

New User


Joined: 04 Sep 2006
Posts: 11

PostPosted: Wed Sep 06, 2006 2:07 pm
Reply with quote

but how to recall a gdg?
HRECALL '*.*.test(-1)' NOWAIT works fine except when it is a gdg..
this gives error..
Back to top
View user's profile Send private message
baidyanath_biswas

New User


Joined: 04 Sep 2006
Posts: 11

PostPosted: Wed Sep 06, 2006 6:39 pm
Reply with quote

Neeraj..
could you please give the exact jcl codes to recall the dataset..
it would be very helpful for me..
Back to top
View user's profile Send private message
gamarendra

New User


Joined: 12 May 2006
Posts: 13
Location: bangalore

PostPosted: Wed Sep 06, 2006 11:23 pm
Reply with quote

Neeraj When u r using Wild Char(*) u need to hard code the generation.
Back to top
View user's profile Send private message
sasidhar

New User


Joined: 27 Feb 2005
Posts: 1

PostPosted: Mon Sep 11, 2006 7:19 am
Reply with quote

Hi all,
If the recall is preventing you from further action in TSO ISPF, we can also try recalling in the batch mode using the following JCL:

//RECALLJB JB ...
//STEP1 EXEC PGM=IKJEFT01,REGION=512K
//SYSPRINT DD SYSOUT=*
//SYSTSPRT DD SYSOUT=*
//SYSTSIN DD *
HRECALL 'A.B.C'
HRECALL 'A.B.**'
/*

Thanks,
Sasidhar
Back to top
View user's profile Send private message
kgumraj

Active User


Joined: 01 May 2006
Posts: 151
Location: Hyderabad

PostPosted: Mon Sep 11, 2006 10:19 pm
Reply with quote

I have a JCL, I sumbit the jobs when I leave for home during weekend and on the first working day, everything will be recalled

JCL

//<JOB card>
//STEP1 EXEC PGM=IEFBR14
//DD1 DD DISP=SHR,DSN=<Data set 1>
//DD2 DD DISP=SHR,DSN=<Data set 2>

You write all the datasets and submit. It will be done
Back to top
View user's profile Send private message
ssprabhu

New User


Joined: 25 Apr 2005
Posts: 67
Location: pune

PostPosted: Wed Sep 13, 2006 6:13 pm
Reply with quote

All ,
Actually the problem is HRECALL for migreted2 state taking much time.

is there any possiblity to recover very immedietely...

Any one can help us ?
Back to top
View user's profile Send private message
kgumraj

Active User


Joined: 01 May 2006
Posts: 151
Location: Hyderabad

PostPosted: Wed Sep 13, 2006 9:48 pm
Reply with quote

I am not sure on the sysntax, but we do have a command

HRECALL/NOWAIT

I am not sure but I have used earlier, try finding out web
Back to top
View user's profile Send private message
crrindia

Active User


Joined: 02 Jul 2005
Posts: 124
Location: Gurgaon

PostPosted: Thu Sep 14, 2006 1:04 pm
Reply with quote

Hi if you run a batch program shown below you can recover the program immediately instead of waiting for some time.

//12345ABC JOB (A00121212335S),'HRECALL',
// MSGCLASS=S,TIME=30,REGION=4M,CLASS=A,
// NOTIFY=&SYSUID
//**************************************************
//RESTORE EXEC PGM=IEFBR14
//FILE1 DD DSN=AAAA.BBBB.CCCC,
// DISP=SHR

Thanks!
Rathna.
Back to top
View user's profile Send private message
ssprabhu

New User


Joined: 25 Apr 2005
Posts: 67
Location: pune

PostPosted: Thu Sep 14, 2006 2:58 pm
Reply with quote

Great rathna thanks
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 -> TSO/ISPF

 


Similar Topics
Topic Forum Replies
No new posts How to save SYSLOG as text data via P... All Other Mainframe Topics 4
No new posts Store the data for fixed length COBOL Programming 1
No new posts Data set Rec-Cnt and Byte-Cnt Testing & Performance 2
No new posts SCOPE PENDING option -check data DB2 2
No new posts Check data with Exception Table DB2 0
Search our Forums:

Back to Top