Flat file to VSAM



Help for IBM's record-oriented filesystem VSAM, ESDS, KSDS, RRDS, LDS and Storage management Subsystems

Flat file to VSAM

Postby shiv77 » Fri Oct 15, 2010 3:33 pm

Hi All

I am using the following jcl to copy the flat file to vsam

//RUNJCLAT JOB  'IBMMFS','SHIV',CLASS=G,MSGCLASS=X,MSGLEVEL=(1,1),
//           NOTIFY=&SYSUID
//STEP1   EXEC PGM=IDCAMS
//SYSPRINT DD  SYSOUT=*
//SYSOUT   DD  SYSOUT=*
//DATAIN DD DISP=OLD,DSN=PWSX.R9SSHC6.FLAT1
//SYSIN DD *
  DEFINE CLUSTER (NAME (R9SSHC6.DATA.VSAM5)
  VOLUMES(WORK02) CYLINDERS(1 2)
  RECORDSIZE (31 60) KEYS(11 4) INDEXED)
  REPRO INFILE(DATAIN) OUTDATASET(R9SSHC6.DATA.VSAM5) ELIMIT (200)
//
/*


the DATA and INDEX file is created and I am getting maxcc=8 with following error
IDCAMS  SYSTEM SERVICES                                           T

  DEFINE CLUSTER (NAME (R9SSHC6.DATA.VSAM6)
  VOLUMES(WORK02) CYLINDERS(1 2)
  RECORDSIZE (31 60) KEYS(11 4) INDEXED)
IDC0508I DATA ALLOCATION STATUS FOR VOLUME WORK02 IS 0
IDC0509I INDEX ALLOCATION STATUS FOR VOLUME WORK02 IS 0
IDC0512I NAME GENERATED-(D) R9SSHC6.DATA.VSAM6.DATA
IDC0512I NAME GENERATED-(I) R9SSHC6.DATA.VSAM6.INDEX
IDC0001I FUNCTION COMPLETED, HIGHEST CONDITION CODE WAS 0

  REPRO INFILE(DATAIN) OUTDATASET(R9SSHC6.DATA.VSAM6) ELIMIT (200)
IDC3302I  ACTION ERROR ON R9SSHC6.DATA.VSAM6
IDC3314I **RECORD OUT OF SEQUENCE - KEY FOLLOWS:
000000  D2C1D2C8 C1D5F3F3 F3F3C4
shiv77
 
Posts: 11
Joined: Fri Oct 15, 2010 3:21 pm
Has thanked: 0 time
Been thanked: 0 time

Re: Flat file to VSAM

Postby enrico-sorichetti » Fri Oct 15, 2010 3:34 pm

IDC3314I **RECORD OUT OF SEQUENCE - KEY FOLLOWS:


and...
it should be enough to review the VSAM basics to understand
cheers
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort
enrico-sorichetti
Global moderator
 
Posts: 2994
Joined: Fri Apr 18, 2008 11:25 pm
Has thanked: 0 time
Been thanked: 164 times

Re: Flat file to VSAM

Postby shiv77 » Fri Oct 15, 2010 3:35 pm

shiv77 wrote:Hi All

I am using the following jcl to copy the flat file to vsam

//RUNJCLAT JOB  'IBMMFS','SHIV',CLASS=G,MSGCLASS=X,MSGLEVEL=(1,1),
//           NOTIFY=&SYSUID
//STEP1   EXEC PGM=IDCAMS
//SYSPRINT DD  SYSOUT=*
//SYSOUT   DD  SYSOUT=*
//DATAIN DD DISP=OLD,DSN=PWSX.R9derh4.FLAT1
//SYSIN DD *
  DEFINE CLUSTER (NAME (R9derh4.DATA.VSAM5)
  VOLUMES(WORK02) CYLINDERS(1 2)
  RECORDSIZE (31 60) KEYS(11 4) INDEXED)
  REPRO INFILE(DATAIN) OUTDATASET(R9derh4.DATA.VSAM5) ELIMIT (200)
//
/*


the DATA and INDEX file is created and I am getting maxcc=8 with following error
IDCAMS  SYSTEM SERVICES                                           T

  DEFINE CLUSTER (NAME (R9derh4.DATA.VSAM6)
  VOLUMES(WORK02) CYLINDERS(1 2)
  RECORDSIZE (31 60) KEYS(11 4) INDEXED)
IDC0508I DATA ALLOCATION STATUS FOR VOLUME WORK02 IS 0
IDC0509I INDEX ALLOCATION STATUS FOR VOLUME WORK02 IS 0
IDC0512I NAME GENERATED-(D) R9derh4.DATA.VSAM6.DATA
IDC0512I NAME GENERATED-(I) R9derh4.DATA.VSAM6.INDEX
IDC0001I FUNCTION COMPLETED, HIGHEST CONDITION CODE WAS 0

  REPRO INFILE(DATAIN) OUTDATASET(R9derh4.DATA.VSAM6) ELIMIT (200)
IDC3302I  ACTION ERROR ON R9derh4.DATA.VSAM6
IDC3314I **RECORD OUT OF SEQUENCE - KEY FOLLOWS:
000000  D2C1D2C8 C1D5F3F3 F3F3C4
shiv77
 
Posts: 11
Joined: Fri Oct 15, 2010 3:21 pm
Has thanked: 0 time
Been thanked: 0 time

Re: Flat file to VSAM

Postby shiv77 » Fri Oct 15, 2010 3:45 pm

can you please provide link to the basic vsam manual oyu are referring to.
shiv77
 
Posts: 11
Joined: Fri Oct 15, 2010 3:21 pm
Has thanked: 0 time
Been thanked: 0 time

Re: Flat file to VSAM

Postby enrico-sorichetti » Fri Oct 15, 2010 4:02 pm

double posting the same stuff is just a waste of resources for everybody!
what is that You did not understand in the whole message sequence and
specifically in the message I highlighted in my first reply

for ALL the IBM manuals You will need in Your IT career start from here
http://www-03.ibm.com/systems/z/os/zos/ ... index.html

for a quick and dirty explanation You might use the lookAt option
cheers
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort
enrico-sorichetti
Global moderator
 
Posts: 2994
Joined: Fri Apr 18, 2008 11:25 pm
Has thanked: 0 time
Been thanked: 164 times

Re: Flat file to VSAM

Postby dick scherrer » Sat Oct 16, 2010 1:04 am

Hello and welcome to the forum,

Have you found the vsam documentation?

You do now understand that the data to be loaded must already be in sequence by the vsam key. . .

In addition to "the manuals" i suggest you find a redbook called "vsam demystified". It will be one of the first "hits" in a web search. It is quite large, but if you are going to do much work with vsam, it is excellent.
Hope this helps,
d.sch.
User avatar
dick scherrer
Global moderator
 
Posts: 6268
Joined: Sat Jun 09, 2007 8:58 am
Has thanked: 3 times
Been thanked: 93 times

Re: Flat file to VSAM

Postby shiv77 » Mon Oct 18, 2010 4:44 pm

Hey Dick , I found the red book "VSAM demystefied", it looks Great! Thanks.
shiv77
 
Posts: 11
Joined: Fri Oct 15, 2010 3:21 pm
Has thanked: 0 time
Been thanked: 0 time

Re: Flat file to VSAM

Postby shiv77 » Mon Oct 18, 2010 5:14 pm

Hi Enrico, This is Ankoo typing from Shiv 's PC, hey please provide me, IBM Manuals, if I would had a single idea that this would happen, I would not have posted my questions, at least give me a chance to improve my self,coz every time I google my question the first link is the ibmmainframe forum link!! Now I have relized my mistake ,so please provide me access..

Thanks and Regards
Ankoo
shiv77
 
Posts: 11
Joined: Fri Oct 15, 2010 3:21 pm
Has thanked: 0 time
Been thanked: 0 time

Re: Flat file to VSAM

Postby enrico-sorichetti » Mon Oct 18, 2010 5:32 pm

Ankoo, the link was already posted in my first reply in this topic
for ALL the IBM manuals You will need in Your IT career start from here
http://www-03.ibm.com/systems/z/os/zos/ ... index.html

IBM manuals are available to anybody just by clicking

and by the way..."hey" is an uneducated way of addressing people :D
cheers
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort
enrico-sorichetti
Global moderator
 
Posts: 2994
Joined: Fri Apr 18, 2008 11:25 pm
Has thanked: 0 time
Been thanked: 164 times

Re: Flat file to VSAM

Postby enrico-sorichetti » Mon Oct 18, 2010 5:35 pm

c /first reply/one of my previous replies/
cheers
enrico
When I tell somebody to RTFM or STFW I usually have the page open in another tab/window of my browser,
so that I am sure that the information requested can be reached with a very small effort
enrico-sorichetti
Global moderator
 
Posts: 2994
Joined: Fri Apr 18, 2008 11:25 pm
Has thanked: 0 time
Been thanked: 164 times

Next

Return to VSAM/SMS

 


  • Related topics
    Replies
    Views
    Last post