Find a routine whether that routine exist in project or not

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
dlkkrao
Participant
Posts: 37
Joined: Wed Apr 20, 2005 4:26 am
Location: mumbai-india
Contact:

Find a routine whether that routine exist in project or not

Post by dlkkrao »

Hai Guys,

I have a doubt. I know the routine name, I want to know that,that routine is existed in that particular project or not. I have one solution for that.

Solution:

Login into DS Administrator, go to Projects tab and select your project then go to command option then I tried this one.

SELECT * FROM DS_ROUTINES WHERE DSRID='Routine Name';

Is there any other ways to solve this problem.

Please look into this issue, and send me reply asap.

Thanks,
ROHIT,
(MORE BUILD-UP, LESS BUSINESS)
ketfos
Participant
Posts: 562
Joined: Mon May 03, 2004 8:58 pm
Location: san francisco
Contact:

Post by ketfos »

Hi,
If you have Metastage, it can help you to find information on an object used in your project.

Ketfos
talk2shaanc
Charter Member
Charter Member
Posts: 199
Joined: Tue Jan 18, 2005 2:50 am
Location: India

Post by talk2shaanc »

Well I think, thatz the simplest and fastest way to find it, if you dont have metastage.
If you are unable to locate the routine; check if its a transform


SELECT * FROM DS_TRANSFORMS WHERE DSRID
LIKE '%Name%';
Shantanu Choudhary
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Search in DS_AUDIT, which can also tell you if the routine has been deleted.
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