Answer Posted / s
750
| Is This Answer Correct ? | 19 Yes | 14 No |
Post New Answer View All Answers
How to test SQL -911 error while developing COB-DB2 program
What is role in db2?
How to get the ddl of a table in db2?
Can we delete records from view?
How can you find out the # of rows updated after an update statement?
Following a db2 update statement, what is the quickest way to compute the total number of updated rows?
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.
What is a db2 collection?
If I have a view which is a join of two or more tables, can this view be updateable?
Explain how can you do the explain of a dynamic sql statement?
How do I delete a table in database?
Explain the function done by data manager?
How to fetch the last row from the table in SQL (db2)?
I HAVE 500 ROW TO UPDATE I WOULD LIKE TO USE ROLLBACK ALONG WITH COMMIT.WHAT IS THE SYNTAX TO CODE COMMIT AND ROLLBACK FOR EVERY 100 ROWS.AND HOW THE CURSOR ROLLBACK TO THE LAST COMMITTING POINT.
What is the use of value function?