Answer Posted / prem
Use the Describe command
eg: Describe table <tablename>
| Is This Answer Correct ? | 38 Yes | 47 No |
Post New Answer View All Answers
How do I import a csv file into db2?
What is lock escalation in db2?
While unloading huge amount of data from table. Suddenly job failed some error. Imagine 1M data unloading, In that 90% data unloaded only 10% left, So if want to unload the rest 10% what needs to be done? Whether do i need to start from top or anything ?
What is ibm db2 used for?
is it compulsory commitment control in journal?
How do I add a column to an existing table in db2?
What is db2 bind?
What is precompiler in db2?
What is the use of predicate?
What is runstats and reorg in db2?
Explain the contention situations caused by locks?
How can we retrieve the total number of records in RPG & CLLE?
What are the uses of db2 optimizer?
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 do I create a view in db2?