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

Read The VSAM file from Start without Key.


IBM Mainframe Forums -> CICS
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
hitesh0000

New User


Joined: 01 Feb 2008
Posts: 6
Location: Noida

PostPosted: Thu Jul 03, 2008 3:31 pm
Reply with quote

Hi,

I have to code a new online program which reads the VSAM file from start to end.

But i dont have the key for the first record, so my question is can i read the first record of the file and henceforth the entire VSAM file.

If yes, which way?

How is it that i bring the pointer to the first record so as to read the entire record and thereafter read the next record until EOF.

It doesnt allow me to Read file without RIDFLD.

Thanks,
Hitesh
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: Thu Jul 03, 2008 4:04 pm
Reply with quote

Move LOW-VALUES to the WS KEY and use this WS KEY as the RIDFLD in the STARTBR command to begin your browse.

FWIW, you cannot Browse a KSDS file without the RIDFLD as you'll get a translator error.

If for some strange reason a NOTFND condition is raised on the STARTBR, then the file is EMPTY.

Otherwise, issue subsequent READNEXT commands until you've reached EOF (EIBRESP=20) or the record that you've just read contains the information that you need. If this is the case, then it would be wise to issue an ENDBR command rather than wait until task termination.

Regards,

Bill
Back to top
View user's profile Send private message
dbzTHEdinosauer

Global Moderator


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

PostPosted: Thu Jul 03, 2008 4:10 pm
Reply with quote

Quote:

I have to code a new online program which reads the VSAM file from start to end.


good use of online resources.
Back to top
View user's profile Send private message
hitesh0000

New User


Joined: 01 Feb 2008
Posts: 6
Location: Noida

PostPosted: Thu Jul 03, 2008 7:35 pm
Reply with quote

Hi Bill O'Boyle,

Its working, thank you very much.



U have really been of great help.



Thanks,
Hitesh
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 -> CICS

 


Similar Topics
Topic Forum Replies
No new posts FTP VB File from Mainframe retaining ... JCL & VSAM 4
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 Error to read log with rexx CLIST & REXX 11
No new posts Extracting Variable decimal numbers f... DFSORT/ICETOOL 17
Search our Forums:

Back to Top