I have an application that has 3 jobs that run in a CA-7 schedule in the following pattern
Job 1: Load resumes a table ABC - Existing
Job 2: Load Resumes the table ABC - New
Job 3: Reads, process and deletes rows from table ABC - Existing
now I want to fit them without causing contentions, there is a Virtual resource requirement between Job 1 and Job 3,
Can I use the same Virtual resource dataset as a requirement for the Job 2 or should I create a separate one between Job 1 and 2 and Job 3 and 2?
Joined: 23 Nov 2006 Posts: 8771 Location: 221 B Baker St
Hello,
If i understand correctly, they are all mutually exclussive so i would use 1 resource as my enqueue mechanism (rather than 2). When any one process "has" the resource, the others must wait.