describe 805 error
Answers were Sorted based on User's Feedback
Answer / kumar
dbrm bind plan not found at the time of run..............
plz correct me.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / paddu
-805 error means at the binding process time,dbrm or
package not found in plan.
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / dn
the sqlcode=-805 get in db2 application program due to the mis matching of the load library for program-id(program name ).
| Is This Answer Correct ? | 6 Yes | 4 No |
805 error means token not found.
it's nothing but inserting duplicates...
| Is This Answer Correct ? | 4 Yes | 3 No |
Answer / sujith
we cannot compile db2 and cobol statements with jcl,so with
dnshpc utiliti we can change db2 statements as call
statements. 805e means timestamp mismatch of db2 ad cobol
statements
| Is This Answer Correct ? | 0 Yes | 9 No |
Answer / dn
the sqlcode=-805 get in db2 application program due to the mis matching TIME STAMP of the dbrm library and load library for program-id(program name ).
| Is This Answer Correct ? | 1 Yes | 14 No |
wht r the advantages of 77 level number ?
WORKING-STORAGE SECTION. 01 A PIC X(3) VALUE 'ABC' 01 B PIC 9(3). PROCEDURE DIVISION. MOVE A TO B. STOP RUN. OUTPUT IS: AB3 WHY AND HOW THIS IS HAPPENING.
01 var1 pic s9(9)v99. 01 var2 pic x(30). procedure division. move 12345.99 to var1. move12345.99 to var2. display var1. display var2. what is the output?
How can you pass values from COBOL program to non-COBOL programs?
can we use 77 level no for Redefines?if we use give an example?
suppose there is one PF having two members PF1 PF2.PF has one unique key Emp ID.could you tell me uniqueness in PF will be effective across members as well ? assume emp iD 3333 is in member PF1 would same Emp id be exist also in member PF2 ?
sample code for read a 2nd record from last in flatfile how can do?
What is the difference between comp and comp-3?
whats the difference between search and search all?
what is mainframe? what is the mainframe software ? what is use in s/w field?
consider the fallowing 77 stat pic 9. 88 male value 1,2,3. 88 female value 4 through7. what will be the value of stat a) set male to true. b) set female to true.
we can use set true for condition names.. similarly can we code set to false in cobol pgm? will it work?