An interactive job should require interact with a User.
Such as have thme enter data to update a file, or enter parameters for a job that is to be submitted to run in batch.
Last Wiki Answer Submitted: April 2, 2011 9:36 pm by CharlieBrowne32,915 pts.
All Answer Wiki Contributors: CharlieBrowne32,915 pts.
If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.
You use batch debugging when the program to be debugged will run in batch. You use interactive debugging when the program to be debugged will run interactively.
A program might need to be debugged in batch because it interacts with a server program. The interface between the server and the program might be specified incorrectly, and a debug session is the only way to learn what the problem is.
Or a program might run correctly when called interactively but fail when called in a batch job. Debugging can show where assumptions need to be adjusted for the batch environment.
You use batch debugging when the program to be debugged will run in batch. You use interactive debugging when the program to be debugged will run interactively.
A program might need to be debugged in batch because it interacts with a server program. The interface between the server and the program might be specified incorrectly, and a debug session is the only way to learn what the problem is.
Or a program might run correctly when called interactively but fail when called in a batch job. Debugging can show where assumptions need to be adjusted for the batch environment.
Tom