Search found 42189 matches

by chulett
Mon Aug 20, 2012 4:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to satisfy for unkown incoming data for multiplescenario
Replies: 12
Views: 3218

So... how accurate is your example data? Are you literally looking for just "LFA1" or "VENDOR" or does it not really matter what value the "literal string" contains? Can this requirement boil down to just taking everything after the second "~" in the string? I...
by chulett
Mon Aug 20, 2012 1:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Couldn't able to read xml file
Replies: 8
Views: 4133

Your file "could not be opened". First two things that come to mind are that it either doesn't exist (which seems unlikely given the 'ls' worked) or you have a permissions issue.
by chulett
Mon Aug 20, 2012 1:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scratch disk issue
Replies: 4
Views: 1630

Do u think if the data is filling up while running the job then we have the increase the scratch disk space? Yes, that's one answer. If "too many" jobs are running at the same time then perhaps the answer is to run fewer simultaneously. Otherwise, the standard answer to "how much scr...
by chulett
Mon Aug 20, 2012 12:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scratch disk issue
Replies: 4
Views: 1630

Monitor the free space while jobs are running... that's when it is filling up.
by chulett
Mon Aug 20, 2012 7:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex flat file stage issue in datastage release 8.5
Replies: 20
Views: 16099

Number? These are (I assume) EBCDIC signed overpunch numbers so { and A -> I are positive while } and J -> R are negative. And the stage should handle them just fine from what I recall.
by chulett
Mon Aug 20, 2012 6:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error -99 getting details for wave 0
Replies: 1
Views: 1598

Thanks for posting this, Phil. :wink:

Not sure if this requires the Admin Console nowadays but a CLEAR.FILE RT_LOG372 would have corrected the issue as well. Worst case you could run it from the command line.
by chulett
Mon Aug 20, 2012 6:55 am
Forum: General
Topic: Notification Activity Executes successfully but no emails
Replies: 3
Views: 1014

I'd also be curious what settings you are using in the stage.
by chulett
Mon Aug 20, 2012 6:55 am
Forum: General
Topic: Extract query information in the job
Replies: 6
Views: 1400

Last time I had to do this, I ended up using dsx exports with the tools from Chuck Smith's site. I found them simple to modify to my specific needs, including loading results to tables to make them easily query-able.
by chulett
Sun Aug 19, 2012 8:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Count issue
Replies: 4
Views: 1733

As you noted, that would be a question for IBM.
by chulett
Sun Aug 19, 2012 8:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datatype conversions
Replies: 17
Views: 8493

That advice looks familiar. :wink:
by chulett
Sun Aug 19, 2012 7:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: datatype Issue
Replies: 12
Views: 5632

END marks the end of the CASE statement, it's not a field. :wink: Rather than select the same field three times, smarten up the case statement so it only needs to be cast once: SELECT CASE WHEN SUBSTRING(lc.refno,1,3) IN ('OSB','OSG','PPS') THEN CAST(SO.AMT as FLOAT) ELSE CAST(LC.AMT as FLOAT) END A...
by chulett
Sun Aug 19, 2012 7:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Complex flat file stage issue in datastage release 8.5
Replies: 20
Views: 16099

I'm assuming Arnd meant he was looking for some output values... you've haven't posted any samples of what comes out of the CFF stage.
by chulett
Sat Aug 18, 2012 9:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datatype conversions
Replies: 17
Views: 8493

Sorry, but you two need to test the posted code a little better if you think they both return the same result in all cases. Using the MonthFromDate() function is not the correct solution.