Search found 42189 matches

by chulett
Wed Jul 09, 2008 12:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: A plethora of sshd processes
Replies: 7
Views: 3144

For what it's worth, these are in pairs. Checking the parent PID gets me this: $ tusc -p 4392 ( Attached to process 4392 ("sshd: dsuser@notty") [32-bit] ) [4392] select(13, 0x4001bc90, 0x4001bca0, NULL, NULL) ............................................................
by chulett
Wed Jul 09, 2008 11:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: A plethora of sshd processes
Replies: 7
Views: 3144

Found out 'truss' is called 'tusc' on HP-UX. Here is the output from it: $ tusc -p 4392 ( Attached to process 4392 ("sshd: dsuser@notty") [32-bit] ) [4392] select(13, 0x4001bc90, 0x4001bca0, NULL, NULL) ..................................................................
by chulett
Wed Jul 09, 2008 11:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: A plethora of sshd processes
Replies: 7
Views: 3144

A plethora of sshd processes

Maybe a silly question, but I've been asked to help track down the crapload of sshd processes that can be found on the server that also houses our ETL server and I'm a little lost. We have 352 of these at the moment, going back at least month. Here's a snippet: dsuser 18394 18372 0 Jul 1 ? 0:00 sshd...
by chulett
Wed Jul 09, 2008 9:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Column name value as parameter
Replies: 6
Views: 1500

basu.ds wrote:please assume that is CSV file

Doesn't help. Your example seems to be normal file reading and the passing of column values to another process, not column names. BIG difference, hence the confusion.
by chulett
Wed Jul 09, 2008 8:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Names
Replies: 21
Views: 5771

This implements the same methodology as noted early on. Why 'from a transformer'? Will you be feeding in job names from a list or query? You won't be able to call it directly there, but as discussed you'd need a routine that would take a job name as a parameter and return (I assume) a comma delimite...
by chulett
Wed Jul 09, 2008 7:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Column name value as parameter
Replies: 6
Views: 1500

Re: Column name value as parameter

basu.ds wrote:ex:assume that i have a set of mail ids in a file i need to pick mailids from file and pass that value to routine as a paramer

How does that information match up with your example? :?
by chulett
Wed Jul 09, 2008 7:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execution of Batch file on a Remote Server
Replies: 6
Views: 1410

Ah... as you should have in the first place. :wink:

Please mark the thread as Resolved and it would be appreciated if you could post the actual resolution, what help they provided. It will help future searchers with the same question.
by chulett
Wed Jul 09, 2008 7:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: update on table giving me low performance
Replies: 1
Views: 667

Not a lot of information to work on. I'd guess you don't have an index over the key fields and thus each update is a full table scan until found. :?
by chulett
Wed Jul 09, 2008 7:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Column name value as parameter
Replies: 6
Views: 1500

Confusing... you've said "column name", "column value" and "column name value" all in the same post. Which is it? :?
by chulett
Wed Jul 09, 2008 6:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Zipping folders or files through a sequential job.
Replies: 3
Views: 1087

Check your syntax - you'll need to specify the extension on the "zip" file in the command you issue.
by chulett
Wed Jul 09, 2008 6:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Load to XML output
Replies: 4
Views: 1162

Typically means your XPath Expressions are incorrect. When they don't match the incoming data, nothing is parsed by the stage.

ps. The 'target file' isn't necessary, the XML Output stage is perfectly capable of doing its own output'n. :wink:
by chulett
Wed Jul 09, 2008 6:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execution of Batch file on a Remote Server
Replies: 6
Views: 1410

You might want to rethink that.
by chulett
Tue Jul 08, 2008 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Anyway to restric users to access DS Designer in PROD
Replies: 5
Views: 1252

Heck, all you need to solve that problem is a big stick. :wink:
by chulett
Tue Jul 08, 2008 11:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Names
Replies: 21
Views: 5771

I use DSJ.ERRNONE but that choice doesn't affect the attachment, only subsequent use of the handle. Have you tried actually using the handle in subsequent steps? From the docs: JobHandle is the name of a variable to hold the return value which is subsequently used by any other function or routine wh...
by chulett
Tue Jul 08, 2008 10:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Link Names
Replies: 21
Views: 5771

Code: Select all

jHandle=DSAttachJob(Arg1,Arg2)

Arg1 = Job Name
Arg2 = Error Level