View previous topic :: View next topic |
Author |
Message |
mrinalsolanki Beginner
Joined: 02 May 2006 Posts: 56 Topics: 16
|
Posted: Tue Sep 04, 2007 7:44 am Post subject: Error in loading VSAM |
|
|
Hi all,
I got return code of 12 while uploading data in VSAM.
JCL is as follows:
Code: | //STEP010 EXEC PGM=IDCAMS
//IN DD DSN=PRAC.FILE,DISP=SHR
//OUT DD DSN=TEST.VSAM2,DISP=SHR
//SYSOUT DD SYSOUT=*
//SYSPRINT DD SYSOUT=*
//SYSIN DD *
REPRO INFILE(IN) OUTDATASET(OUT)
/* |
PRAC.FILE is PDS and JCL to build cluster is as follows:
Code: | //STEP010 EXEC PGM=IDCAMS
//SYSPRINT DD SYSOUT=*
//SYSOUT DD SYSOUT=*
//SYSIN DD *
DEFINE CLUSTER ( -
NAME(TEST.VSAM2) -
VOLUME(STGG18) -
UNIQUE -
SHAREOPTIONS(3 3) -
CYLINDERS(7 7)) -
DATA ( -
NAME(TEST.VSAM2.DATA) -
KEYS (29 0) -
RECORDSIZE(35 35) -
CISZ(4096)) -
INDEX ( -
NAME(TEST.VSAM2.INDEX) -
NOIMBED NOREPLICATE) -
CATALOG(DEVELOP)
/* |
please help me to get out of it. |
|
Back to top |
|
 |
kolusu Site Admin

Joined: 26 Nov 2002 Posts: 12378 Topics: 75 Location: San Jose
|
|
Back to top |
|
 |
mrinalsolanki Beginner
Joined: 02 May 2006 Posts: 56 Topics: 16
|
Posted: Tue Sep 04, 2007 8:20 am Post subject: |
|
|
Kolusu,
This is in sysprint
Code: | IDCAMS SYSTEM SERVICES TIM
REPRO INFILE(IN) OUTDATASET(OUT)
IKJ56228I DATA SET OUT NOT IN CATALOG OR CATALOG CAN NOT BE ACCESSED
IDC0005I NUMBER OF RECORDS PROCESSED WAS 0
IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12
IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE WAS 12 |
|
|
Back to top |
|
 |
dbzTHEdinosauer Supermod
Joined: 20 Oct 2006 Posts: 1411 Topics: 26 Location: germany
|
Posted: Tue Sep 04, 2007 8:44 am Post subject: |
|
|
Quote: |
DATA SET OUT NOT IN CATALOG OR CATALOG CAN NOT BE ACCESSED
|
_________________ Dick Brenholtz
American living in Varel, Germany |
|
Back to top |
|
 |
expat Intermediate

Joined: 01 Mar 2007 Posts: 475 Topics: 9 Location: Welsh Wales
|
Posted: Wed Sep 05, 2007 12:41 pm Post subject: |
|
|
Have you tried OUTFILE instead of OUTDATASET  _________________ If it's true that we are here to help others,
then what exactly are the others here for ? |
|
Back to top |
|
 |
mrinalsolanki Beginner
Joined: 02 May 2006 Posts: 56 Topics: 16
|
Posted: Thu Sep 06, 2007 4:06 am Post subject: |
|
|
yeah ,
I got this error by using OUTFILE
Code: | IDCAMS SYSTEM SERVICES TIME: 05:04:06
REPRO INFILE(IN) OUTFILE(OUT) 00260005
IDC3302I ACTION ERROR ON TEST.VSAM1
IDC3351I ** VSAM I/O RETURN CODE IS 108 - RPLFDBWD = X'8408006C'
IDC31467I MAXIMUM ERROR LIMIT REACHED.
IDC0005I NUMBER OF RECORDS PROCESSED WAS 0
IDC3003I FUNCTION TERMINATED. CONDITION CODE IS 12
00270002
IDC0002I IDCAMS PROCESSING COMPLETE. MAXIMUM CONDITION CODE WAS 12 |
|
|
Back to top |
|
 |
CICS Guy Intermediate
Joined: 30 Apr 2007 Posts: 292 Topics: 3
|
Posted: Thu Sep 06, 2007 4:38 am Post subject: |
|
|
Are you just waiting for someone to look the error up for you?
IDC3351I ** VSAM I/O RETURN CODE IS 108 - RPLFDBWD = X'8408006C' |
|
Back to top |
|
 |
s_shivaraj Beginner

Joined: 21 Sep 2004 Posts: 140 Topics: 14 Location: Chennai, India
|
Posted: Thu Sep 06, 2007 12:09 pm Post subject: |
|
|
Can we copy a PDS(all members) to a sequential file using IDCAMS .. _________________ Cheers
Sivaraj S
'Technical Skill is the Master of complexity, while Creativity is the Master of Simplicity' |
|
Back to top |
|
 |
CICS Guy Intermediate
Joined: 30 Apr 2007 Posts: 292 Topics: 3
|
Posted: Thu Sep 06, 2007 12:14 pm Post subject: |
|
|
s_shivaraj wrote: |
Can we copy a PDS(all members) to a sequential file using IDCAMS .. | Huh? |
|
Back to top |
|
 |
expat Intermediate

Joined: 01 Mar 2007 Posts: 475 Topics: 9 Location: Welsh Wales
|
Posted: Thu Sep 06, 2007 3:36 pm Post subject: |
|
|
s_shivaraj wrote: |
Can we copy a PDS(all members) to a sequential file using IDCAMS .. |
And just how does this relate in any way to the VSAM error being discussed ???
Please start a new thread for a new question. |
|
Back to top |
|
 |
s_shivaraj Beginner

Joined: 21 Sep 2004 Posts: 140 Topics: 14 Location: Chennai, India
|
Posted: Thu Sep 06, 2007 3:46 pm Post subject: |
|
|
expat,
Thats what mrinalsolanki, wants to achieve? .Uploading data from a PDS to a VSAM.. am i missing anything .. _________________ Cheers
Sivaraj S
'Technical Skill is the Master of complexity, while Creativity is the Master of Simplicity' |
|
Back to top |
|
 |
CICS Guy Intermediate
Joined: 30 Apr 2007 Posts: 292 Topics: 3
|
Posted: Thu Sep 06, 2007 4:07 pm Post subject: |
|
|
s_shivaraj wrote: | expat,
Thats what mrinalsolanki, wants to achieve? .Uploading data from a PDS to a VSAM.. am i missing anything .. | I'm sorry for being SO STUPID, but could you PLEASE point me to the where "Uploading data from a PDS" entered into this topic?????  |
|
Back to top |
|
 |
s_shivaraj Beginner

Joined: 21 Sep 2004 Posts: 140 Topics: 14 Location: Chennai, India
|
Posted: Thu Sep 06, 2007 4:25 pm Post subject: |
|
|
Code: | //STEP010 EXEC PGM=IDCAMS
//IN DD DSN=PRAC.FILE,DISP=SHR |
These are the lines from the first message.. Am i wrong.. am i understood wrongly ..  _________________ Cheers
Sivaraj S
'Technical Skill is the Master of complexity, while Creativity is the Master of Simplicity' |
|
Back to top |
|
 |
CICS Guy Intermediate
Joined: 30 Apr 2007 Posts: 292 Topics: 3
|
Posted: Thu Sep 06, 2007 4:48 pm Post subject: |
|
|
s_shivaraj wrote: | Code: | //STEP010 EXEC PGM=IDCAMS
//IN DD DSN=PRAC.FILE,DISP=SHR |
These are the lines from the first message.. Am i wrong.. am i understood wrongly ..  | Thank you very much, I must had a small case of male vision....  |
|
Back to top |
|
 |
expat Intermediate

Joined: 01 Mar 2007 Posts: 475 Topics: 9 Location: Welsh Wales
|
Posted: Sat Sep 08, 2007 2:12 am Post subject: |
|
|
Me too  _________________ If it's true that we are here to help others,
then what exactly are the others here for ? |
|
Back to top |
|
 |
|
|