Get a Report on users per project?

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
tonystark622
Premium Member
Premium Member
Posts: 483
Joined: Thu Jun 12, 2003 4:47 pm
Location: St. Louis, Missouri USA

Get a Report on users per project?

Post by tonystark622 »

Can anyone tell me how (or if) I can get a list of users per project? (oh, yeah, and how do I do that? :) )

Thanks,
Tony
mavrick21
Premium Member
Premium Member
Posts: 335
Joined: Sun Apr 23, 2006 11:25 pm

Post by mavrick21 »

List of users per project who are currently logged in?
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

You can get a list of process ids with the following command.

Code: Select all

$DSHOME/bin/list_readu | grep DS.ADMIN | grep <<projectname>>
Then you could step through that list using something like ps to get the user names associated with those process IDs.

Alternatively you could use a command like finger on the VOC of the pertinent project, if use of these commands is not banned for security concerns.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
tonystark622
Premium Member
Premium Member
Posts: 483
Joined: Thu Jun 12, 2003 4:47 pm
Location: St. Louis, Missouri USA

Post by tonystark622 »

Thanks, folks. Not exactly what I'm looking for. Sorry I wasn't clearer.

You know how you can go into Administrator, open a project, click on the Permissions tab, and see a list of all the users that can work in that project and what role they have? That's the kind of thing I want... Essentially a list of each project and all the DataStage users "in" that project and their role.

Hope that helps. If not ask again!
Post Reply