Folder Name

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
Shruthi
Participant
Posts: 74
Joined: Sun Oct 05, 2008 10:59 pm
Location: Bangalore

Folder Name

Post by Shruthi »

Hi,

Is there a way to find a folder name given the job name. I have list of jobs, I want to find in which folder (Datastage designer), they reside?

Thanks
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

It's called the category, and CATEGORY is a field in the DS_JOBS table.

Code: Select all

SELECT NAME, CATEGORY FROM DS_JOBS WHERE NAME IN ('JobName1', 'JobName2', 'JobName3');
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

Run that from a TCL prompt at the command line or from the Administrator client.
-craig

"You can never have too many knives" -- Logan Nine Fingers
Post Reply