Explain transactions, commits and rollbacks in DB2.
Answer Posted / kumar
Transaction is any basic operation in DB2 like Insert,
Update, Delete is called transaction.
Commit: Make the changes permanently in database
Rollback: Get back the changes to the database.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
If anyone has IBM Certification Dumps pls forward to me & also let me know what are the Certification Codes that are available in DB2
How to check table size in db2 sap?
What are the various isolation levels possible?
What is catalog database in db2?
Hi, i would like to start a new carrier in DB2 DBA.Which and what all step should i have to take..?
What is null indicator in db2?
Which component is used to execute the sql statements?
What do you mean by storage group (stogroup)?
What does reorg do in db2?
What is bind package and plan in db2?
What are the benefits of using the db2 database?
What is a storage group (stogroup)?
What is load utility in db2?
Define db2.
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.