How do run the JCL which has 25 steps by skipping the
following steps 5, 10,15 and 25 without using COND statement
Answers were Sorted based on User's Feedback
Answer / manohar reddy
using IEBEDIT utility we can run the jcl.
| Is This Answer Correct ? | 17 Yes | 5 No |
Answer / singh
Very simple first make a backup and delete steps 5,10,15 and 25 and than run.
| Is This Answer Correct ? | 1 Yes | 0 No |
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 a DB2 catalog?
What is correlated subquery?
what is the role of the cursor in db2?
How do you stop a db2 database in linux?
Do we have any optinon to search part of integer in DB2 as we have for character Like,SUBSTR optins?
How do you retrieve the first 5 characters of firstname column of db2 table emp?
Give a brief description of db2 isolation levels?
What is meant by concurrency?
what is copy pending and check pending ?
Cursors can be declared in both working-storage & procedure division, agreed. But is there any difference? If could you please suggest what is the difference
What is a buffer pool?