Search found 42189 matches

by chulett
Sat Jan 21, 2012 2:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS 8.5 sequel server stage
Replies: 8
Views: 2861

Not sure about concerns, seeing as how you don't really have a choice. I'll have to let someone with experience in that arena answer, I've done very little SQL Server work over the years. I believe about the only thing you wouldn't have not being on Windows would be a direct bulk load capability. No...
by chulett
Sat Jan 21, 2012 12:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DS 8.5 sequel server stage
Replies: 8
Views: 2861

You would have a "dedicated SQL Server stage" if your DataStage server was installed on Windows. For UNIX you would need to use ODBC.
by chulett
Sat Jan 21, 2012 12:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcput() - timeout waiting for mutex
Replies: 4
Views: 2357

Why? If they've been added because someone thought they would magically improve performance, that's not what they are for. I'd suggest removing them from the job, 2 million records is not a large amount and I can't imagine turning off the troublesome buffering would make any kind of significant chan...
by chulett
Sat Jan 21, 2012 10:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcput() - timeout waiting for mutex
Replies: 4
Views: 2357

Are the two "link" stages actually doing anything in the job?
by chulett
Fri Jan 20, 2012 6:27 pm
Forum: General
Topic: Problem with viewing DataStage logs in Unix
Replies: 12
Views: 7091

So it seems you may have found this post if you know about skipping Domain authentication. Did you read their resolution and try to verify that your permissions "all the way down" are correct?
by chulett
Fri Jan 20, 2012 3:41 pm
Forum: General
Topic: Extract the datepart from the filename
Replies: 15
Views: 4088

Get the third field of a "_" delimited string, followed by the first field of a "." delimited string.
by chulett
Fri Jan 20, 2012 3:40 pm
Forum: General
Topic: Problem with viewing DataStage logs in Unix
Replies: 12
Views: 7091

Try passing in a full set of credentials: server, userid, password, domain...
by chulett
Fri Jan 20, 2012 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compare tables data
Replies: 5
Views: 2201

OK, I was thinking a mismatch of the total count was all that was needed, but if it is counts of matching and non-matching records per table then as you said it's not possible without some amount of metadata.
by chulett
Fri Jan 20, 2012 3:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IBM InfoSphere Information Server engine processes
Replies: 9
Views: 3363

And how did you answer the questions?
by chulett
Fri Jan 20, 2012 9:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compare tables data
Replies: 5
Views: 2201

So, "compare tables counts" rather than "compare tables data" it would seem. What have you tried? Seems like parameterized table names, selecting a count from both the source and target tables, joining those two inputs and comparing the results would be fairly straight-forward.
by chulett
Fri Jan 20, 2012 8:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Diff results in each run
Replies: 5
Views: 2199

qt_ky wrote:It sounds like your partitioning may not be correct.
Agreed. Anytime I hear "different results" running the same data through multiple times I suspect faulty partitioning. And I too would be curious what happens when the job runs on a single node.
by chulett
Fri Jan 20, 2012 8:20 am
Forum: General
Topic: Datastage History
Replies: 6
Views: 1973

Yah, there's plenty of information out there for the google'n, including articles like this on Tookbox. Vincent McBurney blogs there and has all kinds of DS goodness available including his three part Dickens inspired "Ghosts of DataStage" posts, which the linked article references.
by chulett
Thu Jan 19, 2012 7:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trouble with StringToDate
Replies: 10
Views: 4281

I made that assumption but have no way to test it.
by chulett
Thu Jan 19, 2012 6:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trouble with StringToDate
Replies: 10
Views: 4281

That's true... it does seem a little backwards. :?
by chulett
Thu Jan 19, 2012 4:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trouble with StringToDate
Replies: 10
Views: 4281

Ah, yes... an empty string is not the same as a null. You could probably combine those two checks into a single one for length=0 but what you've got is fine as well.