what is Static and dynamic linking
Answer / srini
In static linking the load modules of the called/sub
programs are also loaded into main/calling program load
module,and incase of dynamic linking the load modules of
main/calling and sub/called programs are kept seperate and
will be loaded dynamically when ever there is a perticular
call statement.
| Is This Answer Correct ? | 4 Yes | 0 No |
what is consistency token
What are the benefits of using the db2 database?
can you use symbolic parameters in JOB?
In my table having 100 Rec. How can I delete the 7th row?? (we don't know what is data inside the table)
how 2 resolve the -311 sqlcode
The only place of VSAM KSDS in DB2 is?
How to resolve -504 sql code in DB2?
What is db2 and what is the use of db2 optimizer?
How can you quickly find out the number of rows updated after an update statement?
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 meant by repeatable read?
What is db2 instance?