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

Read one record from a VSAM file using its Primary Key


IBM Mainframe Forums -> JCL & VSAM
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Sonal Jadhao

New User


Joined: 03 Apr 2008
Posts: 5
Location: Chennai

PostPosted: Fri Apr 04, 2008 9:07 am
Reply with quote

I want to read one record from a VSAM file using its Primary Key. Can I do that? If yes , how do we do?
Back to top
View user's profile Send private message
Devzee

Active Member


Joined: 20 Jan 2007
Posts: 684
Location: Hollywood

PostPosted: Fri Apr 04, 2008 10:20 am
Reply with quote

What programming language you intend to use for reading the VSAM file?
Back to top
View user's profile Send private message
venkata.ravi

New User


Joined: 09 May 2005
Posts: 30
Location: Hyderabad

PostPosted: Fri Apr 04, 2008 10:34 am
Reply with quote

icon_razz.gif You will get only one record if u use primary key, not multiple records
Back to top
View user's profile Send private message
Sonal Jadhao

New User


Joined: 03 Apr 2008
Posts: 5
Location: Chennai

PostPosted: Fri Apr 04, 2008 3:09 pm
Reply with quote

Using COBOL I want to Read VSAM
Back to top
View user's profile Send private message
expat

Global Moderator


Joined: 14 Mar 2007
Posts: 8797
Location: Welsh Wales

PostPosted: Fri Apr 04, 2008 3:24 pm
Reply with quote

Yes, and ? What is stopping you ?

Are you asking for code ?

Are there no examples in any manuals ?
Back to top
View user's profile Send private message
venkata.ravi

New User


Joined: 09 May 2005
Posts: 30
Location: Hyderabad

PostPosted: Fri Apr 04, 2008 6:11 pm
Reply with quote

Here goes:

Reading from a VSAM file:Cluster must be opened for INPUT or I-O

1)Random Read with KSDS cluster:

MOVE value TO key1.
READ file-name RECORD [INTO ws-field]
INVALID KEY do something
NOT INVALID KEY do something else
END-READ


2)Random Read with RRDS cluster:

MOVE value TO key2.
READ file-name RECORD [INTO ws-field]
INVALID KEY do something
NOT INVALID KEY do something else
END-READ

Other than above you can use START command:

Repositions the file pointer at a record other than the next logical record.
File must be opened for INPUT or I-O

START file-name
KEY IS comparison key
INVALID KEY do something
NOT INVALID KEY do something else
END-START.
Back to top
View user's profile Send private message
Sonal Jadhao

New User


Joined: 03 Apr 2008
Posts: 5
Location: Chennai

PostPosted: Sun Apr 06, 2008 12:54 am
Reply with quote

Thanks Venkat.
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 -> JCL & VSAM

 


Similar Topics
Topic Forum Replies
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
No new posts SFTP Issue - destination file record ... All Other Mainframe Topics 2
Search our Forums:

Back to Top