What is file status 39 ?
Answers were Sorted based on User's Feedback
Answer / elite group
File attribute mismatch...
The LRECL defined in the program is different whatever
given in the JCL
| Is This Answer Correct ? | 44 Yes | 1 No |
Answer / ananta
logical error in file mismatch
like blksize mismatch, lrecl mismatch , recfm mismatch
| Is This Answer Correct ? | 14 Yes | 3 No |
Answer / anil prajapati
blksize is not multiple of record length and the
description of these in jcl is different from cobol
| Is This Answer Correct ? | 13 Yes | 6 No |
Answer / vijay kulkarni
File length mismatch(in prog and jcl) and file open error
| Is This Answer Correct ? | 13 Yes | 6 No |
Answer / santosh
one of the reasons of file status 39 is file attribute
mismatch
LRECL mentioned in JCL is different than the one mentioned
in COBOL
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / shyam
File length mismatch and file open error (in cobol prog)
| Is This Answer Correct ? | 3 Yes | 2 No |
Answer / vijay gund
A conflict has been detected between the fixed file
attributes and the attributes specified for the file in the
program.
This is usually caused by a conflict with record-length,
key-length, key-position or file organization.
Other possible causes are:
1. Alternate indexes are incorrectly defined.
2. The Recording Mode is Variable or Fixed or not defined
the same as when the file was created
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / rahul joshi
AIX IS MISMATCHED.
RECORDING MODE IS VARIBLE,FIXED OR NOT DEFINED WHEN CREATED EARLIER.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rumki
If the load is not correct then also repeatedly file
attribute mismatch will come. I just deleted the load and
then tried it...It worked fine.
| Is This Answer Correct ? | 0 Yes | 2 No |
If there are two copybooks which have same variables and we are using both the copybooks in our program. will there be an error and if i move values to the variable which copybook varibales gets the values i move in.
What does the IS NUMERIC clause establish ?
consider the following two statements MOVE 10 TO N PERFORM PARA-X N TIMES STOP RUN PARA-X MOVE 5 TO N how many times PARA-X willbe exicuted? a.10 b.5 c.infinate d.execution error
Why occurs can not be used in 01 level ?
What is difference between com and com3? Eg. s9(4) so what is the memory it will occupy com and com3.
how can we find total no of records in a file ....is there any utility......?
what is internal sort and external sort ? which is preferable ?
after udatingg first 110 rows, my job abends. now how do i change my cobol program so that when i restart the Job it will start updating from 111th row ( i.e in next run I di=ont want to update those 110 rows which are already been updated in the first run before job abend)
how will u code parm parameter and where pls ?
how do you define single dimensional array and multidimensional array in your cobol?
What are the functions like c or c++ in cobol?
How do you submit JCL via a Cobol program?