IBM MainFrame (5234)
IBM AS400 (1355)
IBM PL/1 (31) Suppose, file A has 100 records and file B has 500 records. We want to write records common to both A and B into file C and records which are present only in either A or B into another file D. What should be the logic of Cobol program to achieve this?
7 18278In JCl which of this activities get executed if act002 abnormally terminates //job001 job ......... //act001 exec pgm=cobo01 //act002 exec pgm=cob02, cond=(01,le) //actoo3 exec pgm=cob03, cond=only //actoo4 exec pgm=con04
3 7554How many times the loop runs here 01 a pic 9(2) value 10. perform para1 a times stop run. para1: move 20 to a.
3 7184How many times the loop runs here 01 a pic 9(2) value 1. perform para1 until a=10 move 1 to a. stop run. para1: move 10 to a.
5 8014How Vsam was evolved? What was the equivalent file for ESDS,KSDS and RRDS prior to evolution? What were their disadvantages of those file which leads to evolution of ESDS,KSDS and RRDS files ?
1 5276hai this ravi, i completed my mca in 2009, i learnt .net course, i hav been looking for a job on .net, now i would like learn ibm mainframes to get job immediatly,is it correct decision? basically am not sound in programming,what about unix adminstration plz help me to take correct decision,which is the best course now to get the job immediatly
2 4248
What is fset?
What is meant by comp-3 and what is it used for?
How can an in-stream dataset be terminated?
)If there are 10 steps in GDG, if I want to refer the step2 after step5 . what should I do?
Name the command which is used to release a record on which exclusive control is gained?
Can you define temporary storage?
what are the various stages of job processing?
how to pass parms to ispf edit macro?
Service Program : S1 Modules in S1 : M1 M1 having two procedures : ADD, SUB Current Binder Language STRPGMEXP PGMLVL(*CURRENT) EXPORT SYMBOL("ADD") EXPORT SYMBOL("SUB") ENDPGMEXP Doubt: I need to add one new Module to the Service Program M2 having one procedure ‘MULT’ How to add this new module to the service program S1 ? If I need to recreate the service program again, Do I need to mention the Module M1 again while recreating along with new Module M2? There is no Binding Directory. Binder language structure will be like this STRPGMEXP PGMLVL(*CURRENT) EXPORT SYMBOL("ADD") EXPORT SYMBOL("SUB") EXPORT SYMBOL("MULT") ENDPGMEXP STRPGMEXP PGMLVL(*PREVIOUS) EXPORT SYMBOL("ADD") EXPORT SYMBOL("SUB") ENDPGMEXP
writing an sql statement from selecting records from two files using single statement and nested select statement.
What is db2 optimizer?
How can you classify the locks in db2?
which cl command can be used at program execution to redirect the file named in an rpg program?
Explain how do you delete item 3 in a five-item tsq?
1. There is a file called Month. Month has 12 members called Jan, Feb, ..., Dec. How to design a rpg code which can access any member and show its content. (User can ask for any member when required)?