Search found 53125 matches

by ray.wurlod
Mon Oct 08, 2007 2:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how can i have previous month-end date(sept) in this month
Replies: 5
Views: 1827

Obviously didn't like the answer and intends to keep posting the question until the preferred answer is posted.
:roll:
by ray.wurlod
Mon Oct 08, 2007 2:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage CopyOfthTransactionTest2..CTra
Replies: 3
Views: 1182

Start with a Search for "abnormal termination of stage".
by ray.wurlod
Mon Oct 08, 2007 2:42 pm
Forum: General
Topic: Select Query in Oracle-- General Question
Replies: 6
Views: 1684

I suspect the interviewer, lacking knowledge of how DataStage works, had in mind an answer involving a system variable such as @INROWNUM. Similarly, the output of the SELECT statement might be piped through a UNIX head command. We, of course, know that such a design would actually select all the row...
by ray.wurlod
Mon Oct 08, 2007 2:38 pm
Forum: General
Topic: Failed connect to Datastage Server (Error 80019)
Replies: 3
Views: 2306

If it's any consolation, it's a trap that catches many new players.
by ray.wurlod
Mon Oct 08, 2007 2:36 pm
Forum: General
Topic: cut up string
Replies: 4
Views: 1374

The name of the function is Substrings (with a final "s"). You left this off, so DataStage is looking for a variable called Substring.
by ray.wurlod
Mon Oct 08, 2007 2:34 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Object reference not set to an instance of an object
Replies: 8
Views: 5987

It would be edifying if you could post the combined wsdl.
by ray.wurlod
Mon Oct 08, 2007 2:31 pm
Forum: Enhancement Wish List
Topic: limit the lookup data in a hashed file
Replies: 4
Views: 1946

... or even a UV table in DataStage
by ray.wurlod
Mon Oct 08, 2007 4:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregation logic
Replies: 1
Views: 924

Remove Duplicatesstage.
by ray.wurlod
Mon Oct 08, 2007 4:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EE job failure message: Input buffer underrun
Replies: 5
Views: 4849

The message "traversed 33 fewer bytes than present in the record buffer" means that your data do not match your metadata. The difference is 33 bytes.
by ray.wurlod
Mon Oct 08, 2007 4:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sorting in server jobs
Replies: 10
Views: 13706

The Sort stage in server jobs is not particularly efficient. It is often more efficient to have the UNIX sort command sort the data. If even more speed is required, you can use products such as SyncSort or CoSort.
by ray.wurlod
Mon Oct 08, 2007 4:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Control Job Aborts Unexpectedly - DSD.WriteLog
Replies: 13
Views: 11978

The subroutine that writes to the log runs from line 265 (address 0x684) to line 288 (address 0x78c). As you can see, it uses the value from the control record //SEQUENCE.NO - which is an integer. So I don't think that's the problem. The problem may be in one of the other routines invoked in DSD.Wri...
by ray.wurlod
Mon Oct 08, 2007 4:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deploying .dsx job from Window platform to Unix platform
Replies: 3
Views: 884

Welcome aboard. You can simply import the DataStage components from your DSX file. The jobs will run, from a DataStage perspective. However, if you have anything DOS-specific in your designs, such as pathnames and record delimiters in text files, your jobs (or DSX) may need some tweaking for UNIX ru...
by ray.wurlod
Mon Oct 08, 2007 4:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: data loading problem in oracle bulk
Replies: 3
Views: 1703

Look for the "bad file" generated by sqlldr.
by ray.wurlod
Mon Oct 08, 2007 4:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reusable ODBC Lookups.
Replies: 6
Views: 2112

Etiquette Note Do not hijack threads. This thread is nearly 18 months old. Start a new thread where you have a new question. Search the forum first; you question may already have been answered. Further, your question does not relate to the subject of this thread. Once you have created a new thread ...
by ray.wurlod
Mon Oct 08, 2007 4:30 am
Forum: General
Topic: cut up string
Replies: 4
Views: 1374

Welcome aboard. 8 + 10 + 10 is only 28; what do you want to do with the other ten characters? You can use the Left( string , n ) function to get the leftmost n characters from a string, the Right( string , n ) function to get the rightmost n characters from a string, and Substrings( string , start ,...