What happens in the background of spool when we submit a job for compilation and execution... This is a recent question in ibm...Kindly help me.....
IBM,
3 7218I hv ten records in ps file and i hv say some 15 records in vsam file .i hv empno and age in ps file n empno,empname,dept n desig in vsam file. i hv 2 read the ps file n check wid matching empno in vsam file and then insert all fields from ps and vsam into db2 table....plz help in writin the procedure division
1 5219
What is a cics task?
How does jcl act on a cobol code?
Using alternate indexes in cics program?
Is length = 0 sufficient to ascertain that the field has been modified?
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 null in db2?
a dd statement has 2 types of parameters. Name them?
Mention the length of physical storage of the given data types of db2 – date, timestamp, time
what happens in execution stage in job processing?
which is the cics control program that provides communication services between user written application programs and terminals?
explain in brief how you can create a vsam file?
is delete operation supported in an esds? Is rewrite operation possible in esds?
Explain what you understand by passing by value.
What is the place for VSAM KSDS?
i was faced one question- i have value -00001234.56 Suppress the zeroes and the output should be -1234.56 But Not - 1234.56 spaces should not be available after suppressing the zeroes. logic in jcl and cobol?