when we are trying to update db2 rows. if the program
abends . how we will know that the last successful update
row was
Answer Posted / vinay srivastava
We can go in Abend Aid and look for the source listing where
we can find the last values stored in Host Variables where
the Job Abended.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
SET is the ANSI standard for variable assignment, SELECT is not. SET can only assign one variable at a time, SELECT can make multiple assignments at once. If assigning from a query, SET can only assign a scalar value. If the query returns multiple values/rows then SET will raise an error. SELECT will assign one of the values to the variable and hide the fact that multiple values were returned (so you'd likely never know why something was going wrong elsewhere - have fun troubleshooting that one) When assigning from a query if there is no value returned then SET will assign NULL, where SELECT will not make the assignment at all (so the variable will not be changed from it's previous value) As far as speed differences - there are no direct differences between SET and SELECT. However SELECT's ability to make multiple assignments in one shot does give it a slight speed advantage over SET.
How to create db2 table in mainframe?
What is temporal table in db2?
What does runstats do in db2?
What is alias in db2?
How can record locking be achieved in those DB2 versions which do not support it?
What is meant by dclgen?
Which are the db2 tools to protect integrity of the database?
What are bind parameters in db2?
I have a subprogram B calling from mainprogram A.I have opened a cursor in A ,Can i fetch the same cursor in subprogram B , If yes , Please explain the reason?
What does db2 mean?
What is the difference between cursor stability and repeatable read isolation levels?
What is db2 look?
What is dclgen in db2?
What is meant by explain?