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

Recover a tape dataset with different file name.


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

Active User


Joined: 06 Jul 2009
Posts: 213
Location: Chennai

PostPosted: Tue May 28, 2013 3:01 pm
Reply with quote

Hi,

I have a tape dataset uncataloged, I can recover it by using following JCL but I don't have access to recover it, since it is a prod dataset. Is it possible to recover a uncataloged tape production dataset to a test dataset ?

Example DEV.XXXXX.G3897V00

Code:

//REPROCMD  EXEC PGM=IDCAMS,REGION=3M                 
//SYSPRINT  DD SYSOUT=*                               
//SYSOUT    DD SYSOUT=*                               
//SYSIN     DD *                                       
 DEFINE NONVSAM -                                     
    (NAME(PROD.XXXXX.G3897V00) - 
     DEVICETYPE(CART) -                               
     VOLUME(873256) -                                 
     NORECATALOG)                                     
/*                                                     


Regards,
Magesh
Back to top
View user's profile Send private message
Ranjithkumar

New User


Joined: 10 Sep 2008
Posts: 93
Location: India

PostPosted: Tue May 28, 2013 3:10 pm
Reply with quote

Use IEBGENER. Make sure you have READ access to the PROD qualifier.

Code:

//TAP2DASD EXEC PGM=IEBGENER                                     
//SYSPRINT DD  SYSOUT=*                                           
//SYSUT1   DD  DSN=PROD.XXXXX.G3897V00,                           
//             DISP=SHR                                           
//SYSUT2   DD  DSN=DEV.XXXXX.X3897,                               
//             DISP=(NEW,CATLG,DELETE),UNIT=SYSDA,               
//             DCB=(*.TAP2DASD.SYSUT1),SPACE=(CYL,(100,100),RLSE),
//             VOL=(,,,50)                                       
//SYSIN    DD DUMMY                                               
//SYSUDUMP DD SYSOUT=*                                           
Back to top
View user's profile Send private message
magesh23586

Active User


Joined: 06 Jul 2009
Posts: 213
Location: Chennai

PostPosted: Tue May 28, 2013 3:23 pm
Reply with quote

Hi Ranjith, Thanks for the response, The below jcl works for cataloged dataset, Currently dataset set is uncataloged. Needs to be cataloged with different name.

Regards,
Magesh
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: Tue May 28, 2013 5:23 pm
Reply with quote

Quote:
Is it possible to recover a uncataloged tape production dataset to a test dataset ?
Depending upon what you mean, possibly.

If you are wanting to copy an uncataloged tape data set to a cataloged disk file name, you can do that by specifying the UNIT and VOL=SER as well as DISP and DSN for the tape data set. If the tape is uncataloged, and has not been scratched, you must provide the data that usually comes from the catalog (that is, the type of tape drive to use and the serial number/name of the tape).

If you are wanting to catalog the tape with a different data set name, this is not generally possible since the tape label contains the data set name and if the catalog data set name does not match the tape label the data set will not be accessible (actually, IIRC the catalog attempt will fail).
Back to top
View user's profile Send private message
Anuj Dhawan

Superior Member


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

PostPosted: Tue May 28, 2013 5:28 pm
Reply with quote

Talking to Tape management Support does not help?
Back to top
View user's profile Send private message
expat

Global Moderator


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

PostPosted: Tue May 28, 2013 6:53 pm
Reply with quote

And if the tape is a virtual tape, it may not be recoverable at all
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 FTP VB File from Mainframe retaining ... JCL & VSAM 1
No new posts Extract the file name from another fi... DFSORT/ICETOOL 6
No new posts How to split large record length file... DFSORT/ICETOOL 10
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
Search our Forums:

Back to Top