What are the abend codes occour in ur latest PROJECT in DB2
Answer Posted / 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 View All Answers
What is role in db2?
What are bind parameters in db2?
Explain about dbrm.
How to check sequence on a table in db2?
What is the maximum size of varchar data type in db2?
Explain in detail about buffer manager and its functionalities?
What is the advantage in De-normalizing tables in DB2?
What are the prerogatives?
What are iseries servers?
How can you classify the locks in db2?
What is reorg?
have 3 tables table1, table2 and table3 which contains employee information. table1 is master table, table2 contains emp details like emp no and so on, table 3 contains emp salary. so if any emp leave company between 25th - 30th of every month it has to get updated in tables. but it is not getting updated. What is the reason.
Where can you declare a cursor in a cobol-db2 program?
Mention some fields that are a part of sqlca.
Which component is responsible for processing sql statements and selecting access paths?