i WANT ALL ERROR codes IN CICS and DB2
Answers were Sorted based on User's Feedback
Answer / asmara
-818 Error Code is the Time stamp error which is very well
known in DB2
-803 is the duplicate error- if you insert same record in
the same table.
104-error indicates that either a field that is defined as
integer is specified with quotes or an Char value in insert
that needs to represented with quotes is not represented
so, Hope this helps to solve your issue
-805 Error will come when we didnt bind it.
-305 suppose one of ur db2 table column is defined as NOT
NULL, if you trying to insert Null value on that column at
that time u will get this error. in simple way null
indicator error.
-311 This will occur when we wont care about varchar fields
CICS Abends: ASRA ABENDS nothing but SOC004,SOC007 Mainly
one time i got "CDS full" means control data set is full so
for solving this delete the unwanted data list from the
file control table or else move it in after exceeeding the
size limit of member.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / kingmanish
First of all u are asking about DB2 and CICS error in COBOL
section. Why?? :)
Secondly to get exhaustive list refer Books or IBM manuals.
If u need clarification on any particular error code.
post it here
| Is This Answer Correct ? | 0 Yes | 0 No |
There is a variable with value 19446. Requirement is to convert it to 194.46. I tried it by doing divide by 100 and my receiving field data type is 9(03)v99. But the output is 194. I am not getting the decimal value. Could anyone pls let me know how to get this done?
If I want to increase the Limit in GDG. What should I do?
Wat is the difference between NEXT and CONTINUE statement in cobol,can any one explain with example.
HOw can I get the negative sign while deduct high value from low value
what are the limitations of Inline Perform?
how can we apply for HSBC exam(Mainframe) in India??? i went to their site and was told to submit my CV ,. etc..( totally confusing...)
What are the ways you can generate a copybook?
I have a seq file with different fields one field is address with pic x(50) as input in a cobol program. In address there is 'PUNE' at any different positions in the address field ( form 1 t0 50) . My requirement is select the fields with address 'PUNE' by using cobol. Please suggest
What will happen if we move SPACES to numeric field and ZEROES to alphabetic field?
If you were passing a table via linkage, which is preferable - a subscript or an index?
if you code move high-values to variable,can you move it into numeric variable or alphanumeric variable?
If a file has 1000 records.. if i have to replace the first and last characters of the file with another character. how it can be done....