My cobol program(not having any sql statements) is calling
another cobol program ( having sql statements), what is
needed for compilation and run in jcls .
Answer Posted / mangesh
Thanks Santy for all the answers .
| Is This Answer Correct ? | 1 Yes | 4 No |
Post New Answer View All Answers
What is iseries database?
What is the connection string to connect to the DB2 Database ?
Are view updateable?
Give the name of some fields form sqlca.
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 you pull up a query which was previously saved in qmf?
What is difference between alias and synonym in db2?
On which levels locks can be applied?
What is multi row fetch in db2?
What is package in cobol db2?
How can record locking be achieved in those DB2 versions which do not support it?
How do I start db2 in windows?
What is the use of predicate?
Mention data types used in db2 ?
File not opened because library is *PROD and debug is UPDPROD(*NO). ? what may be the reason? how to solve it..?