what is static sql? what is dynamic sql? Give me details
Answer Posted / ankitha
static and dynamic sql are the sql statements which are
coded in pgms . in static the execution of sql is known
means which sql statement should execute after any sql
statements but in dynaamic the execution of any sql
statements will happens in run time .it is like chioce
| Is This Answer Correct ? | 2 Yes | 1 No |
Post New Answer View All Answers
Give a brief description of db2 isolation levels?
What is db2 catalog database?
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 sqlca?
Mention the various locks that are available in db2.
Can there be more than one cursor open for any program?
How can the firstname and the lastname from the emp table be concatenated to generate complete names?
What is table space in db2?
What is null indicator in db2?
What is schema in db2?
Which isolation level provides highest data integrity?
How is the value function used?
How to resolve deadlock issue
Can we delete records from view?
What is ibm db2 used for?