View previous topic :: View next topic
|
Author |
Message |
N.SUDHA Warnings : 1 New User
Joined: 06 Feb 2006 Posts: 8
|
|
|
|
how to read only a particular record from a file using rexx |
|
Back to top |
|
|
superk
Global Moderator
Joined: 26 Apr 2004 Posts: 4652 Location: Raleigh, NC, USA
|
|
|
|
You can start by reviewing the EXECIO command.
You need to be more specific about what you mean by "a particular record". Do you mean a particular record number? |
|
Back to top |
|
|
N.SUDHA Warnings : 1 New User
Joined: 06 Feb 2006 Posts: 8
|
|
|
|
suppose we have 10 records in a file how to read only the 9th and 10th record |
|
Back to top |
|
|
superk
Global Moderator
Joined: 26 Apr 2004 Posts: 4652 Location: Raleigh, NC, USA
|
|
|
|
"EXECIO 2 DISKR ddname 9"
Places 2 records into the stack starting at record number 9. |
|
Back to top |
|
|
N.SUDHA Warnings : 1 New User
Joined: 06 Feb 2006 Posts: 8
|
|
|
|
how to move a record from one position to another using rexx |
|
Back to top |
|
|
amitava Warnings : 1 Active User
Joined: 30 Oct 2005 Posts: 186 Location: India
|
|
|
|
Hey N.SUDHA,
You should not post another doubt in the same forum. Its become tough to correlate. However what SUPERK has said is quite fine. For move you can put those two records in a stem and free the DS. Then again use ALLOC in MOD mode. and use EXECIO DISKW to write the records in the particular position.
You also can use macro and read upto the record you want(Eg;- upto 9th record). Now place the 9th record & 10th record in the stem. Now you want to place that records (say - 3 & 4th position), then again place the cursor at the first position and read upto 2nd position and put the records in the 3rd & 4th position. |
|
Back to top |
|
|
|