I want to code a REXX Program in order to load many tables
in a database simultaneously in a batch fashion. Currently
batch codes ar available in which only one job is submitted
at a time and this loads only one table. My requirement is
that many tables should be loaded at a time when one Job is
submitted and can this be done using REXX Tool??? I want
code snippet or the coding for this , please



I want to code a REXX Program in order to load many tables in a database simultaneously in a batch..

Answer / wolfgang

Hi,

you may code different jobs for each tables to be loaded.

e.g.

//LOADJOB1 JOB
.
.
//LOADJOB2 JOB
.
.
//LOADJOBn JOB
.
.

Each Job must have a different jobname and must run in a
Jobclass that supports parallel execution of Jobs.

Then you may code a REXX Batchjob which submits the
different Loadjobs.

//TSO EXEC PGM=IKJEFT01
//SYSTSPRT DD SYSOUT=*
//SYSPRINT DD DUMMY
//SYSTSIN DD *
SUBMIT 'Datasetname holding JCL for Loadjob 1'
SUBMIT 'Datasetname holding JCL for Loadjob 2'
.
.
SUBMIT 'Datasetname holding JCL for Loadjob n'

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More REXX Interview Questions

What is the difference between ooRexx and IBM's Object REXX for Windows?

0 Answers  


I want to open particular list of members inside pds.Let me know whether below code will work.if not tell me how it works INPUT='DDM.DATASET(AAA*)' X = OUTTRAP(MEMS.)

0 Answers   Mind Tree,


what is uni-rexx?

0 Answers   IBM,


How to find or access the current level of a gdg?

0 Answers  


what if I need to have the same application running on multiple platforms, such as unix and the mainframe? Does that mean I have to maintain two separate sources?

0 Answers   IBM,






I want to set position for a particular text in a certain position in several of my cics maps.Please provide me with a solution. Ex: If "F1-Help" has to be set to pos(4,27) always in all the maps within a PDS.

0 Answers  


If there are a set of statements and each has a word "value" in it, If I want to display all these statements so that the word "value" is aligned, then how do I code this in REXX. e.g - The value of X is Y. Wot is its value? Do u know its value? I want to know its value.

1 Answers  


i want new rexx tool which will perform jcl chk without submitting it

0 Answers  


How to code the db2 queries using rexx, and also plz send some link and examples using db2 queries?

0 Answers  


does uni-rexx give me any capabilities designed specifically for the unix environment?

0 Answers   IBM,


I want to code a REXX Program in order to load many tables in a database simultaneously in a batch fashion. Currently batch codes ar available in which only one job is submitted at a time and this loads only one table. My requirement is that many tables should be loaded at a time when one Job is submitted and can this be done using REXX Tool??? I want code snippet or the coding for this , please

1 Answers  


is oorexx compatible with ibm object rexx?

0 Answers   IBM,


Categories