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 |
Program A calls program B. Will the working storage variables declared in program B be initialized every time it is called by program A or will the values be retained until the end of program A?
How do you code cobol to access a parameter that has been defined in jcl? And do you code the parm parameter on the exec line in jcl?
What happens in the background of spool when we submit a job for compilation and execution... This is a recent question in ibm...Kindly help me.....
What is the difference between working storage copybook and linkage section copybook?
How do you fetch current date in normal cobol pgm and in cobol-db2 pgm?
what is record label is empty or standard in file description of data division?
Explain about level numbers?
can you declare redefine in level 01?
Describe the cobol database components?
Read a flat file and write last but one (I have n records in a file I have to write n-1th) record in another flat file. Could you please provide me the code in COBOL?
What are the different rules for performing sort operation?
wht is the diff b/w if and evaluate stmts ?