What are the abend codes occour in ur latest PROJECT in DB2

Answers were Sorted based on User's Feedback



What are the abend codes occour in ur latest PROJECT in DB2..

Answer / g.kalyani

-305 --->NULL value is moved to the HOST VARIABLE
-803 ---->DUPLICATE ROW INSERTION
-904 ---->DB@ Resources not avalable
-805 --->PLAN not FOUNd
-911/-913 -->TIME OUT DUE TO DEAD LOCK

Is This Answer Correct ?    3 Yes 0 No

What are the abend codes occour in ur latest PROJECT in DB2..

Answer / yuvaevergreen

-803 ---->DUPLICATE ROW INSERTION
Identify the record for SQLCODE=-803 and rectify the issue.
-904 ---->DB@ Resources not avalable
Try to use display database and check the locks on which
pages.
DIS DB(MMLPDDDB) SPACENAM(MMLPD61T) LIMIT(*)
-805 --->PLAN not FOUNd
Rebind the package/plan.
-911/-913 -->TIME OUT DUE TO DEAD LOCK
1. change the lock size to 'ROW' for all the tablespaces(
tables) used in batch job program. here LOCKSIZE is a
tablespace property.

2. do a RUNSTATS on all tabalespaces(tables) used by the
batch program and mainly tables on which contention
occured.

3. bind the batch program package/plan with isolation level
CS and
deallocate bind parameter as COMMIT.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More DB2 Interview Questions

What is the result of open cursor statement?

0 Answers  


what is consistency token

3 Answers  


What is dynamic SQL?

1 Answers   ADP,


What is check constraint in db2?

0 Answers  


i want to maintain uniqueness on pdf without make lf??????????

0 Answers  






How can you validate Sql errors during cursor operation in db2 pgms and where do you code?

0 Answers   IBM,


What is the purpose of coding FETCH in a SQL SELECT query? Explain with an example in Detail?

4 Answers  


why we create view.

5 Answers  


For unmatched rows returned from an outer join, the column values in the other table are set to null e.g If A OUTER JOIN B returns some unmatched rows from A, the corresponding column values in B will be set to null. What can be done so that a null value is not displayed for these columns?

3 Answers  


What is db2 plan table?

0 Answers  


DB2 can implement a join in three ways using a merge join, a nested join or a hybrid join. Explain the differences?

0 Answers  


Describe what a storage group(STOGROUP) is?

2 Answers  


Categories