If anyone has IBM Certification Dumps pls forward to me & also
let me know what are the Certification Codes that are
available in DB2
No Answer is Posted For this Question
Be the First to Post Answer
How to view db2 table structure?
What is a db2 tablespace?
what is the process of precompiler?
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.
Where is the output of EXPLAIN stored?
what needs to be done if a table is in copy pending / check pending status?
What does db2 stand for?
Can you use a select query in a loop to fetch multiple rows? If so what is the advantage of using a cursor?
how to resolve -811 sqlcode .give clear explaination
How to run db2 command in windows?
OUTER JOINS USED TO GET MATCHING AND NONMATCHING ROWS FORM 2 OR MORE TABLES BASED ON COLUMNS. SIMPLE JOINS ALSO DO THE SAME THEN WHAT IS THE USE OF OUTER JOINS.
How do I change the column size in db2?