reading jill file through datastage

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
swapnilverma
Participant
Posts: 135
Joined: Tue Aug 14, 2007 4:27 am
Location: Mumbai

Post by swapnilverma »

why dont you copy required info from autosys database to a static table and use that table ...

usually we do not have many changes in autosys ... if in case there is a change update the table....

need more info abt your requirement what do you want to achieve by reading jil file ?
Thanks
Swapnil

"Whenever you find whole world against you just turn around and Lead the world"
raji33
Premium Member
Premium Member
Posts: 151
Joined: Thu Sep 23, 2010 9:21 pm
Location: NJ

Post by raji33 »

Thanks swapnil for immediate response but i wanted to do this because these jobs are scheduled for next 30 days
swapnilverma
Participant
Posts: 135
Joined: Tue Aug 14, 2007 4:27 am
Location: Mumbai

Post by swapnilverma »

alternatively if only job name is required than you can use grep and cut -d:

unix commands to filter out desired input ...


autorep -j ur_autosys_server.% -q |grep insert_job |cut -d":" -f 2 >> file_name.txt

will write all job name to file_name.txt


hope this helps ...
Thanks
Swapnil

"Whenever you find whole world against you just turn around and Lead the world"
Post Reply