job access

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
DSbox61
Premium Member
Premium Member
Posts: 62
Joined: Mon May 22, 2006 10:18 am

job access

Post by DSbox61 »

Hi all,

I believe in Datastage only one user can access a job at a time...In that case is there any way to know which user is currently accessing a particular job?

Thanx in advance...
mcolen
Premium Member
Premium Member
Posts: 31
Joined: Wed Aug 11, 2004 8:59 am
Location: Florida

Which User

Post by mcolen »

From NT If you have admin you can do a LIST.READU
avi21st
Charter Member
Charter Member
Posts: 135
Joined: Thu May 26, 2005 10:21 am
Location: USA

Post by avi21st »

Yes. You can also use the Datastage administrator and from the Command Line run the "LIST.READU "

That would give you all the users logged in.
Avishek Mukherjee
Data Integration Architect
Chicago, IL, USA.
koolnitz
Participant
Posts: 138
Joined: Wed Sep 07, 2005 5:39 am

Post by koolnitz »

Alternatively, you can fire the same command on TCL prompt. Do a search in the forum for detailed info.
Nitin Jain | India

If everything seems to be going well, you have obviously overlooked something.
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

LIST.READU is available on all platforms. It can also be executed from the operating system as list_readu (the executable is in $DSHOME/bin). On UNIX, you can pipe the output of list_readu through grep to isolate the lock entry for the job itself.

Code: Select all

list_readu | grep jobname
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
DSbox61
Premium Member
Premium Member
Posts: 62
Joined: Mon May 22, 2006 10:18 am

Post by DSbox61 »

THANX A LOT GUYZ.....very useful info.....
Post Reply