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

Random search in file


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

New User


Joined: 16 Jan 2006
Posts: 53
Location: pune

PostPosted: Sat Apr 22, 2006 12:35 pm
Reply with quote

Hi All,

Can we search a file in random mode on the basis of Partial key.

Say the key length in Vsam file is of 40
and I only want to search for the last 10 characters of the key

ie move '0123456789' to key(31:10)
read <file1>

It it possible

Thanks,
Dipanshu
Back to top
View user's profile Send private message
DavidatK

Active Member


Joined: 22 Nov 2005
Posts: 700
Location: Troy, Michigan USA

PostPosted: Sun Apr 23, 2006 6:38 am
Reply with quote

Dipanshu.

I believe the only way to do that is to define a secondary key for that location.

Dave
Back to top
View user's profile Send private message
shivani_tech
Warnings : 2

New User


Joined: 08 Jan 2006
Posts: 22
Location: UNITED KINGDOM

PostPosted: Sun Apr 23, 2006 1:31 pm
Reply with quote

ya only with the help of alternate key...........we can solve out this.
Back to top
View user's profile Send private message
dipanshu

New User


Joined: 16 Jan 2006
Posts: 53
Location: pune

PostPosted: Mon Apr 24, 2006 9:15 am
Reply with quote

Hi shivani,

Many thanks 4 reply,

Could u or anyone please elaborate the above reply.

Thanks Dipanshu
Back to top
View user's profile Send private message
sreenivas_kommana

New User


Joined: 11 Apr 2006
Posts: 1

PostPosted: Tue Apr 25, 2006 5:23 pm
Reply with quote

alternate key on vsam is Alternate Index.
Define AIX on your VSAM file. Find below the format:

EXAMPLE.AIX - your alternate index
EXAMPLE.KSDS2 - your base VSAM file

//DEFAIX1 JOB ...
//STEP1 EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=A
//SYSIN DD *
DEFINE ALTERNATEINDEX -
(NAME(EXAMPLE.AIX) -
RELATE(EXAMPLE.KSDS2) -
MASTERPW(AIXMRPW) -
UPDATEPW(AIXUPPW) -
KEYS(3 0) -
RECORDSIZE(40 50) -
VOLUMES(VSER01) -
CYLINDERS(3 1) -
NONUNIQUEKEY -
UPGRADE) -
CATALOG(USERRCAT/USERUPPW)
/*

NOTE: You can refer the below link for more help.
publibz.boulder.ibm.com/cgi-bin/bookmgr_OS390/BOOKS/dgt1v403/CCONTENTS

-kommana
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 Binary File format getting change whi... All Other Mainframe Topics 7
No new posts Compare 2 files and retrive records f... DFSORT/ICETOOL 3
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
Search our Forums:

Back to Top