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

How to change the all member name for PDS dataset


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

New User


Joined: 20 Nov 2005
Posts: 44
Location: DALIAN,CHINA

PostPosted: Mon Oct 09, 2006 7:37 am
Reply with quote

There is PDS dataset, first 3 char of all member name is ABC. I wanna change the ABC to DEF for all member of it... Kindly someone can show me how to do ?
Back to top
View user's profile Send private message
TizMe

New User


Joined: 05 Jan 2006
Posts: 72

PostPosted: Mon Oct 09, 2006 9:16 am
Reply with quote

If you have SAS you can use PROC PDS

Quote:

proc pds ddname=pdslib;
change ABC:=DEF:;
run;
Back to top
View user's profile Send private message
nityaibm

New User


Joined: 24 Sep 2006
Posts: 6

PostPosted: Tue Jul 03, 2007 4:54 pm
Reply with quote

hi,

In the PDS,just enter 'R' (rename) beside the member name which you want to change the name of PDS





Regards,
Nitya
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: Tue Jul 03, 2007 7:13 pm
Reply with quote

Hello,

The requirement is to rename all members, not just one.
Back to top
View user's profile Send private message
Marso

REXX Moderator


Joined: 13 Mar 2006
Posts: 1353
Location: Israel

PostPosted: Tue Jul 03, 2007 8:19 pm
Reply with quote

Edit the PDS and just enter in the command line:
Code:
R ABC* DEF=====
Back to top
View user's profile Send private message
Phrzby Phil

Senior Member


Joined: 31 Oct 2006
Posts: 1042
Location: Richmond, Virginia

PostPosted: Tue Jul 03, 2007 8:39 pm
Reply with quote

Doesn't work for me.
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: Tue Jul 03, 2007 8:55 pm
Reply with quote

Hello,

Most likely a site-specific add-on. . . .
Back to top
View user's profile Send private message
UmeySan

Active Member


Joined: 22 Aug 2006
Posts: 771
Location: Germany

PostPosted: Wed Jul 04, 2007 1:51 pm
Reply with quote

Hi !

What's about using IEB-Utils like IEBCOPY or IEBUPDTE ???

Regards, UmeySan
Back to top
View user's profile Send private message
raam_kumar

New User


Joined: 25 Apr 2007
Posts: 44
Location: chennai, India

PostPosted: Wed Jul 04, 2007 5:58 pm
Reply with quote

Hi

Please try this. i think it might be useful for you
//jobcard
//STEP01 EXEC PGM=IEBCOPY
//SYSUT3 DD UNIT=SYSDA,SPACE=(CYL,5)
//SYSUT4 DD UNIT=SYSDA,SPACE=(CYL,5)
//IN DD DISP=SHR,DSN=
//OUT DD DISP=SHR,DSN=
//SYSPRINT DD SYSOUT=*
//SYSUDUMP DD SYSOUT=*
//SYSIN DD *
COPY OUTDD=OUT,INDD=IN
SELECT MEMBER=(ABC12345,DEF12345,R)
SELECT MEMBER=(ABC12346,DEF12346,R)
SELECT MEMBER=(ABC12347,DEF12347,R)
SELECT MEMBER=(ABC12348,DEF12348,R)
/*
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 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