You are not logged in.
Announcement
Unanswered posts
|
Pages: 1
Hi,
I created a simple job to migrate multiple tables from one environment to another environment (Oracle 9i -> 10g), all in the same job (about 10 objects). While running it from my execution server, is there a way to setup monitoring such that I can know which module and/or portion of the job it is on?
Thanks.
Offline
There's two ways I know of:
1. Turn on Statistics during interactive run in TOS.
2. If you've exported your job to scripts and are running via command line, then you'll have to use a series of tWarn components. Attach those to the components along your flow via OnComponentOK triggers.
Also, you'll need to add a tLogCatcher connected to a tFileOutputDelimited. These two components will NOT be connected to anything else. Just to each other. As each component in your job completes, it's tWarn will issue the message which will be captured by the tLogCatcher and written out to the file specified in the FileOutputDelimited.
In Unix, you can then just do a tail command on the delimited file and watch as things unfold.
Last edited by SMaz (2008-06-05 20:55:57)
Offline
Perfect. That's what I was looking for!
Thanks for your response.
Offline
Pages: 1