How To find list of Datastage jobs using a LookupFileset ?

A forum for discussing DataStage<sup>®</sup> basics. If you're not sure where your question goes, start here.

Moderators: chulett, rschirm, roy

Post Reply
Rajesh Jale
Premium Member
Premium Member
Posts: 6
Joined: Fri Mar 14, 2014 2:29 am

How To find list of Datastage jobs using a LookupFileset ?

Post by Rajesh Jale »

Hi,

May I know how should I fetch the list of datastage jobs in a project which are using a Lookupfileset (Eg : Name of the lookupfileset : Customer_Records_Ref)

I have referred some old posts which are related to the table..i.e.. getting list of datastage jobs which are using a table. But i am unable to fetch this with the same query. Can anyone help me with the relavent query.

Query for table :
SELECT DS_JOBS.NAME AS JOB_NAME,DS_JOBS.CATEGORY,DS_JOBOBJECTS.NAME AS OBJECT_NAME,DS_JOBOBJECTS.OLETYPE,EVAL DS_JOBOBJECTS."if index(@RECORD,'TABLE_NAME',1) > 0 then 'FOUND' else ''" AS FOUND FMT '5L'FROM DS_JOBS,DS_JOBOBJECTS WHERE DS_JOBS.JOBNO = DS_JOBOBJECTS.OBJIDNO and FOUND = 'FOUND' GROUP BY JOB_NAME, DS_JOBS.CATEGORY, OBJECT_NAME, DS_JOBOBJECTS.OLETYPE,FOUND;

Regars,
Rajesh
Regards,
Rajesh
kduke
Charter Member
Charter Member
Posts: 5227
Joined: Thu May 29, 2003 9:47 am
Location: Dallas, TX
Contact:

Post by kduke »

I would use dsjob -ljobs >filelist.txt
Mamu Kim
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Right click on Lookup File Set in Palette and perform a Where Used search.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
Post Reply