How does one bind 2 versions of a CICS transaction with the same module name in two different CICS regions that share the same DB2 subsystem?
2 7452
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 would you find out the total number of rows in a db2 table?
What is catalog database in db2?
What is the difference between using bind () and rebind () methods of naming class?
How is deadlock resolved?
Is ibm db2 open source?
How can the duplicate values be eliminated from db2 select?
Is schema the same as database?
What is plan in cobol db2?
What is the use of reorg in db2?
SQLCODE = -199, ERROR: ILLEGAL USE OF KEYWORD CHAR, TOKEN KEY was expected
What are foreign keys in db2?
What is a bind in db2?
What is a db2 collection?
What are the contents of a dclmgen?