This was related to -811 sqlcode, In a COBOL DB2 program
which accesses employee table and selects rows for employee
'A', it should perform a paragraph s001-x if employee 'A'
is present. In this case it gets -811 sqlcode, but still it
process the paragraph s001-x. What could be wrong in my
code.
Answer Posted / srivalli janapati
Your code must not be using the CURSOR concept and NOT
handling the abend properly.When atleast CURSOR is not
being used in the code,there should be alteranative code to
handle when query resulted in retrieving multiple rows.
-811: is basically the SELECT query resulted in retrieving
more than a Row
Meaning,the resultant query must be retrieving more than a
row,and tried to push all the resualtant rows at a time for
the processing.COBOL-DB2 program can't handle this
situation as it expects a row at a time and then ABENDS.
| Is This Answer Correct ? | 16 Yes | 0 No |
Post New Answer View All Answers
What is check constraint in db2?
What is rct?
What is the max length of sqlca?
Mention data types used in db2 ?
What is the use of reorg in db2?
How do you eliminate duplicate values in db2?
What is the difference between spufi and qmf?
How do I connect my db2 database to ibm?
What is consistency token in db2?
What are the rules for db2 programming?
What is cobol db2?
What is dbrm? What it contains? When it will be created?
What is ibm db2 used for?
Where can you declare a cursor in a cobol-db2 program?
How to resolve deadlock issue