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

copy one pds to another pds with same attributes


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

New User


Joined: 26 Feb 2014
Posts: 2
Location: INDIA

PostPosted: Wed Feb 26, 2014 2:08 pm
Reply with quote

Hello..

I have some 15 PDSs to be backuped. I need the same attributes(DCB, etc.) of the original PDS to be copied for the new backup PDS even at backend.

It would be helpful if its an Utility( like IEBCOPY, IDCAMS).
Back to top
View user's profile Send private message
Pete Wilson

Active Member


Joined: 31 Dec 2009
Posts: 580
Location: London

PostPosted: Wed Feb 26, 2014 2:21 pm
Reply with quote

Use DFDSS COPY which will copy the datasets contents and attributes exactly.

e.g.
Code:
//STEP001 EXEC PGM=ADRDSSU
//SYSPRINT DD SYSOUT=*
//SYSIN       DD * 
COPY ALLE ALLD(*) NMC NSC TGTA(SRC) SHR TOL(ENQF) OPT(4) -
   DS INC( -
               input.pds1 -
               input.pds2 -
               input.pds3 -
               )) -
  RENAMEU( -
               (input.pds1 -
                output.pds1 ) -
               (input.pds2 -
                 output.pds2 ) -
               (input.pds3 -
                output.pds3 ) -
               )
Code'd
Back to top
View user's profile Send private message
Nic Clouston

Global Moderator


Joined: 10 May 2007
Posts: 2455
Location: Hampshire, UK

PostPosted: Wed Feb 26, 2014 2:22 pm
Reply with quote

Suggest you read the IBM Utilities manual and do not forget to look at ADRDSSU. (note re ADRDSSU: Pete got there ahead of me by a few seconds!)
Back to top
View user's profile Send private message
Rohit Umarjikar

Global Moderator


Joined: 21 Sep 2010
Posts: 3051
Location: NYC,USA

PostPosted: Wed Feb 26, 2014 2:28 pm
Reply with quote

Welcome to the forum..

What did IEBCOPY say? did you try Sort? As well as IEBGENER?
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 Feb 26, 2014 7:45 pm
Reply with quote

Hello and welcome to the forum,

When you create this backup, make sure it can be restored (tio other dataset names) and used.

Often people create a new backup process and do not make sure that everything is usable. Merely checking for a "successful" run is NOT enough.
Back to top
View user's profile Send private message
Vinaya123

New User


Joined: 26 Feb 2014
Posts: 2
Location: INDIA

PostPosted: Fri Apr 18, 2014 10:25 am
Reply with quote

Thank you all. I used LIKE command with IEBCOPY. ADRDSSU is also interesting. I learnt a new one .. thanks again
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 VB to VB copy - Full length reached SYNCSORT 8
No new posts Need COBOL COPY Help in MVS Environment COBOL Programming 4
No new posts Issue after ISPF copy to Linklist Lib... TSO/ISPF 1
No new posts DB2 Table - Image copy unload IBM Tools 2
No new posts How to copy the -1 version of a membe... TSO/ISPF 4
Search our Forums:

Back to Top