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

Replace a particular record in file


IBM Mainframe Forums -> CLIST & REXX
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
surya anem

New User


Joined: 20 Dec 2007
Posts: 54
Location: Hyderabad

PostPosted: Tue Apr 29, 2008 4:15 pm
Reply with quote

Hi,
I have a set of records(say 100) in a file which are displayed in panels for the user to view or edit.
if a user edits the 51st record how do i write that particular record into the data file.



with regards,
surya
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Tue Apr 29, 2008 4:18 pm
Reply with quote

read into a stem all the records,
carry on the updates
rewrite the dataset/member from the stem
there is no way to update a single logical record in a PS datsset
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


Joined: 20 Oct 2006
Posts: 6966
Location: porcelain throne

PostPosted: Tue Apr 29, 2008 4:19 pm
Reply with quote

your file. What kind of file is it?
Back to top
View user's profile Send private message
surya anem

New User


Joined: 20 Dec 2007
Posts: 54
Location: Hyderabad

PostPosted: Tue Apr 29, 2008 4:20 pm
Reply with quote

It is a PS file.......(datafile)
Back to top
View user's profile Send private message
surya anem

New User


Joined: 20 Dec 2007
Posts: 54
Location: Hyderabad

PostPosted: Tue Apr 29, 2008 4:21 pm
Reply with quote

Hi
if i have some millions of records and if i have updated just one field of one record..do i have to update all the records

thanks
surya
Back to top
View user's profile Send private message
enrico-sorichetti

Superior Member


Joined: 14 Mar 2007
Posts: 10873
Location: italy

PostPosted: Tue Apr 29, 2008 4:22 pm
Reply with quote

yes,

You will not be updating all the records
You will copy from the input dataset to the output dataset..

thats the basic rule of sequential dataset processing
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Tue Apr 29, 2008 5:26 pm
Reply with quote

I have to double-check this, but I could swear that you can open a dataset and read a single record for update with EXECIO DISKRU, then write the single updated record back with the corresponding EXECIO DISKW, without having to process the entire dataset.
Back to top
View user's profile Send private message
superk

Global Moderator


Joined: 26 Apr 2004
Posts: 4652
Location: Raleigh, NC, USA

PostPosted: Mon May 05, 2008 6:18 pm
Reply with quote

I double-checked. You can update a single record. For example, if you have 10,000 records, and you want to update record 5000:

Code:

/* REXX */
"EXECIO 1 DISKRU ddname 5000"
Pull the_record
the_record = "THIS RECORD HAS BEEN CHANGED"
Push the_record
"EXECIO 1 DISKW ddname (FINIS"
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 -> CLIST & REXX

 


Similar Topics
Topic Forum Replies
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 0
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 8
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 Replace each space in cobol string wi... COBOL Programming 3
Search our Forums:

Back to Top