DS 6.0.1, 7.5.1.A on UNIX System (HP)

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
mmanes
Participant
Posts: 91
Joined: Tue Mar 16, 2004 10:20 am
Location: Rome

DS 6.0.1, 7.5.1.A on UNIX System (HP)

Post by mmanes »

Hi everyone,
how I can to know all or last connections on DataStage?

Is there a log?

Thank you,
Matteo.
roy
Participant
Posts: 2598
Joined: Wed Jul 30, 2003 2:05 am
Location: Israel

Post by roy »

Hi,
You can use netstat and ps Unix commands, as described in the manuals (also in the upgrade manual).

IHTH,
Roy R.
Time is money but when you don't have money time is all you can afford.

Search before posting:)

Join the DataStagers team effort at:
http://www.worldcommunitygrid.org
Image
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Once disconnected no record remains of a connected client. You can script your own, or you can enable logging in the dsrpcd process.
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
mmanes
Participant
Posts: 91
Joined: Tue Mar 16, 2004 10:20 am
Location: Rome

Post by mmanes »

Hi ray,
thank you for the answer...

I've another question:
how I can enable it? and... there're other impacts?

Thank you in advance.
Matteo.
kumar_s
Charter Member
Charter Member
Posts: 5245
Joined: Thu Jun 16, 2005 11:00 pm

Post by kumar_s »

Code: Select all

netstat -a | grep dsrpc
ps -eaf | grep dsprc
Can be used and can be diverted to a file for logging.
Impossible doesn't mean 'it is not possible' actually means... 'NOBODY HAS DONE IT SO FAR'
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

You enable it the same way that you debug the dsrpcd - by directing its outputs (stdout and stderr) to somewhere other than /dev/null. You can control the amount of warning via the debug-level switch (most verbose is -d9). There is a noticeable impact in DataStage clients' response times, and startup times when using dsjob, but not much otherwise.
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