Answer Posted / guest
It establish relation between application program and DB2
tables.
Is This Answer Correct ? | 53 Yes | 10 No |
Post New Answer View All Answers
Why db2 is called db2?
What is a bind in db2?
What is the difference between nvl and coalesce?
How do I optimize a query in db2?
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.
How can tablespace be moved to another dasd volume that is allocated for that tablespace?
what is db2 restart?
What is the usage of open cursor command?
What is multi row fetch in db2?
What do you mean by commit and rollback?
In an sql table that is embedded, what is the procedure to retrieve rows that are part of a db2 table?
What is bind and rebind in db2?
What is bufferpool in db2?
Which command is used to remove all rows from a table?