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 |
what are the paramater we cannot use in procedure?how many instream we can write in single jcl?can we call instream to catalog and ctalog to instream?
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?
how can count the number of character in feild ?? suppose for instance i have a feild with value ' rajesh sarkar' then how can v count the number of characters whitout spaces...........
What is a scope terminator? Give examples.
Why occurs can not be used in 01 level ?
How many variables can be declared in w-s section.?
How to convert bunch of words in a line to relvant ASCII values?
given the following piece of code: CALL SUB-PGM USING A, B, C. CALL SUB-PGM USING A, C, C. (a) Both CALL statements will always produce same result. (d) Both CALL statements may produce different result. (c) Compile-time error because SUB-PGM is a dataname. (d) Compile-time error because A, B, C are used twice.
Can we move X(7) to S9(7) COMP?
what is the difference between external and global variables?
hi is there any means of deletin a record from a ps usin cobol not using jcl?eg if i am reading a record and if some condition is matched tat particular record must be deletd fom the ps
I have one ps file in which there are 3 fileds emp_no,emp_name and leave_app.this ps file information give the detail of employee which is going to apply for leave.suppose emp_no=113430,emp_name=ajay,leave_app=1 that means he is going to apply for 1 day leave.and accordingling the table in db2 will be updated means if he has that no of leave in his account then he will get dat leave and updated acc. in table(leave_balance=previous leave present in table-leave_app).Now i want to check whther the updated result is correct or not by comparing the two ps file using IEBCOMPARE or icetool so what is going to be the two ps file and how its is going to be compare.