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

Multiple start and read for KSDS VSAM


IBM Mainframe Forums -> COBOL Programming
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
raviprabhu

New User


Joined: 20 Oct 2006
Posts: 29

PostPosted: Tue Feb 04, 2014 9:00 pm
Reply with quote

Is the Multiple start and read for KSDS VSAM in COBOL program is recommendable ?
If not whats the reason ?
Back to top
View user's profile Send private message
Bill O'Boyle

CICS Moderator


Joined: 14 Jan 2008
Posts: 2501
Location: Atlanta, Georgia, USA

PostPosted: Tue Feb 04, 2014 9:07 pm
Reply with quote

During the multiple START (assuming ACCESS IS DYNAMIC), are you reading the same record? If not, then read each record independently and randomly.

But, the worse thing you could do, would be to issue many CLOSE and OPEN's, for whatever reason.
Back to top
View user's profile Send private message
raviprabhu

New User


Joined: 20 Oct 2006
Posts: 29

PostPosted: Tue Feb 04, 2014 10:06 pm
Reply with quote

I have 5 records - I have read all records and then again i need to read from 1st record to 5th record, I am using start and then read (without closing the fie)
Is this fine to do ?
My requirement is for reading multiple times same 5 records
Back to top
View user's profile Send private message
Bill O'Boyle

CICS Moderator


Joined: 14 Jan 2008
Posts: 2501
Location: Atlanta, Georgia, USA

PostPosted: Tue Feb 04, 2014 10:28 pm
Reply with quote

Instead of re-reading the five records over and over, when you read them the first time, place them in a a WS array/table (with an occurs 5) and then upon the next need for them, obtain each one from the array.
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 Feb 04, 2014 11:09 pm
Reply with quote

Hello,

Why does someone believe you need to re-read these records?

With only 5 records, suggest you do as Mr. Bil recommended.
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 -> COBOL Programming

 


Similar Topics
Topic Forum Replies
No new posts Error to read log with rexx CLIST & REXX 11
No new posts INCLUDE OMIT COND for Multiple values... DFSORT/ICETOOL 5
No new posts Access to non cataloged VSAM file JCL & VSAM 18
No new posts Replace Multiple Field values to Othe... DFSORT/ICETOOL 12
No new posts Multiple table unload using INZUTILB DB2 2
Search our Forums:

Back to Top