Search found 53125 matches

by ray.wurlod
Thu Apr 29, 2010 12:05 am
Forum: Site/Forum
Topic: how to read the file pattern in sequential file
Replies: 3
Views: 3673

This is not the correct forum for this question. This forum is for suggestions about how to improve the DSXchange site/forum. Please post in the correct forum so that, at the very least, we have some inking about what job type you're talking about. This question, for example, has different answers f...
by ray.wurlod
Wed Apr 28, 2010 8:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Funnel Stage
Replies: 3
Views: 1795

You can use Performance Analysis to determine where the "hot spots" are in a job.
by ray.wurlod
Wed Apr 28, 2010 5:18 pm
Forum: General
Topic: DS 7.5 ODBC Stage
Replies: 7
Views: 2681

I suspect the strategy in the stage is Replace Existing Rows
by ray.wurlod
Wed Apr 28, 2010 5:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequentila file null error at imprt
Replies: 6
Views: 1755

Please mark this thread as Resolved
by ray.wurlod
Wed Apr 28, 2010 5:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sorting in Database Vs Datastage
Replies: 11
Views: 5706

Which machine has the most free resources? In a future version (possibly the next version, which some IBMers are now calling 8.5) something called "dynamic optimization" is introduced, where you design a sort (and some other operations) and a dynamic decision is made by the software about ...
by ray.wurlod
Wed Apr 28, 2010 5:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequencer job status when command activity fails
Replies: 10
Views: 7661

dsjob -run returns its own exit status; if the job request was made successfully then the correct exit status for dsjob is 0.

However, the -jobstatus option has a side effect of causing dsjob -run to exit with the exit status of the job itself.
by ray.wurlod
Wed Apr 28, 2010 5:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: cleaning special characaters in char fields in db2
Replies: 11
Views: 3984

Do you have the authority to unilaterally change your client's data?
:roll:
by ray.wurlod
Wed Apr 28, 2010 4:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: UTF-8 Format
Replies: 5
Views: 1861

0x80 represents null internally in DataStage. Can you learn what this particular byte is being used for in the troublesome file?
by ray.wurlod
Wed Apr 28, 2010 4:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: I want to stripout the '-'
Replies: 8
Views: 2014

Code: Select all

Convert("-", "", InLink.ColumnName) 
was all you needed.
by ray.wurlod
Wed Apr 28, 2010 4:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance Monitoring
Replies: 4
Views: 2095

Before you do that, why not investigate the Performance Analysis and Resource Estimation tools right there in DataStage?
by ray.wurlod
Wed Apr 28, 2010 4:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to read 16000 length data using sequential file
Replies: 5
Views: 1741

Standard practice here is, when marking a thread as Resolved, to make a post indicating how it was resolved. This helps future searchers. Also, we strive for a professional standard of written English, among other things to help those whose first language is not English. DSXchange is not a mobile t...
by ray.wurlod
Wed Apr 28, 2010 4:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup With Duplicate Records
Replies: 1
Views: 2382

You don't. Each Lookup stage allows only one reference input to deliver multiple rows - that's why you choose the link name from a drop down list.

Multiple inputs delivering multiple rows is getting you into Cartesian product territory - you can end up generating very many rows on the output.
by ray.wurlod
Wed Apr 28, 2010 4:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: WAS launched but failed initialization
Replies: 18
Views: 12555

One of the rules here is: different question ==> start new thread

Your problem is not "WAS launched but failed initialization". That's why a new thread is needed, so as to aid future searchers.
by ray.wurlod
Wed Apr 28, 2010 4:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic Processing
Replies: 6
Views: 2021

Perhaps the RMM stage could be used to good effect here?
:wink:
by ray.wurlod
Wed Apr 28, 2010 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to split a string into bytes
Replies: 4
Views: 1790

Use the ByteLen() function to determine the number of bytes in the string.

Splitting a multi-byte character can leave you with totally meaningless data. Why are you attempting to do this?