Search found 297 matches

by jhmckeever
Thu Apr 17, 2008 7:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File nane with date
Replies: 25
Views: 14408

Jolly good.

Ray - Let me know if you're ever running a "Parallel to Server" transition class! ;-)

John.
by jhmckeever
Thu Apr 17, 2008 7:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File nane with date
Replies: 25
Views: 14408

If your concern with the Unix option is that you don't want another 'asset' to have to manage outside the DataStage environment then couldn't you just supply the 'script' in the filename specification? E.g. Something like ... MyFilename_`date +%Y%m%d-%H%M%S`.txt I've been working in a purely PX envi...
by jhmckeever
Tue Apr 15, 2008 7:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSX stage names to meaningful stage names
Replies: 10
Views: 13074

Here's a list of OLETypes I took from our project, along with their corresponding descriptions. The first column is the OLEType with the description after the semicolon. Ignore the "= **" bit. On our project we use a server routine to verify consistent stage naming across all jobs. This is...
by jhmckeever
Mon Apr 14, 2008 7:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in merging files File '/tmp/sovRukEa/opf__9' write err
Replies: 4
Views: 2527

Thanks for that Ray, Would you mind elaborating on one point I'm trying to understand ... That said, you only have 418056KB free on /tmp, so maybe something else was eating /tmp space at the same time, and has since deleted its files. ... wouldn't the Sort stage be the one consuming /tmp ? My unders...
by jhmckeever
Mon Apr 14, 2008 1:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error in merging files File '/tmp/sovRukEa/opf__9' write err
Replies: 4
Views: 2527

If I'm not mistaken isn't your file size greater than your free space in /tmp ?
by jhmckeever
Wed Apr 09, 2008 7:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User inserted sort...
Replies: 5
Views: 4237

I know it's obvious but you ARE sorting and de-duping on the same keys, aren't you?
by jhmckeever
Tue Apr 08, 2008 8:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hirerachy table logic help needed
Replies: 6
Views: 2512

There's a website called www.google.com which is sometimes useful with problems such as this. :-) However, here's something to get you started ... SELECT DISTINCT CHILD, PARENT FROM {table} CONNECT BY NOCYCLE PRIOR CHILD = PARENT ORDER BY CHILD; If you want to test it for an individual employee ... ...
by jhmckeever
Mon Apr 07, 2008 11:33 pm
Forum: IBM QualityStage
Topic: Increasing the number of tokens
Replies: 2
Views: 2737

You might find <a href="http://www.dsxchange.com/viewtopic.php?t=104921">this thread</a> on a similar topic useful. If memory serves, I think the simplest solution suggested was to use a 'pre-processor' PAL script to split the ">" token into separate tokens for digits and alphabe...
by jhmckeever
Mon Apr 07, 2008 11:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hirerachy table logic help needed
Replies: 6
Views: 2512

You don't necessarily need to write a procedure. A query could potentially return the data in the form you require.

What RDBMS are you using? Oracle, for example, has a "CONNECT BY" syntax that can "flatten" hierarchical relationships in the manner you require.

J.
by jhmckeever
Tue Apr 01, 2008 5:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problems with STP stage
Replies: 1
Views: 1167

Your best (and quickest) help would come from performing a <a href="http://www.dsxchange.com/search.php">search</a> on your error message. It would have delivered useful topics on your, like perhaps <a href="http://www.dsxchange.com/viewtopic.php?t=104192&highlight=Client+Library+...
by jhmckeever
Sun Mar 30, 2008 5:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: trimming of decimals
Replies: 4
Views: 1507

Decimal fields can't contain spaces - so I'm assuming you're talking about a string field containing string representations of decimal values? I think your logic would be better expressed as: if trim(sv," ","A") = "" then "null" else "abc" ... as tri...
by jhmckeever
Wed Mar 26, 2008 6:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failed to connect to queue manager. Reason code 2058
Replies: 3
Views: 9345

Reason Code 2058 is MQRC_Q_MGR_NAME_ERROR which means your queue manager name is invalid. Have you tried connecting from your DataStage server to the queue using MQSC?

By the way, you can access the documentation online at:
http://www-306.ibm.com/software/integra ... index.html

J.
by jhmckeever
Wed Mar 19, 2008 4:52 pm
Forum: General
Topic: new do qualitystage
Replies: 1
Views: 764

Welcome Aboard Marco! :D Other than the supplied manuals your best approach would be to attend the 'official' IBM QualityStage training course. Alternatively, you could try posting on the "looking for talent" forum and employ the services of an independent consultant. The manuals do walk y...
by jhmckeever
Tue Feb 12, 2008 7:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: problem loading a parallel routine in the transfomer
Replies: 5
Views: 1808

Does your transformer compile if you enter the name of the parallel routine into your transformer derivation manually? If not, what error message do you receive?

John.
by jhmckeever
Tue Feb 12, 2008 5:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: orchdbutil
Replies: 6
Views: 2955

Thanks Ray -

I wanted confirmation that the wizard employs the orchdbutil utility. I suppose I should have phrased it along the lines of 'the wizard generates the orchdbutil command line for you'.

J.