Search found 53125 matches

by ray.wurlod
Tue Dec 26, 2006 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential Target file should not be created if it size is 0
Replies: 7
Views: 1974

Actually it IS achievable, but only if you do the entire ETL job in code rather than stages. But I don't count that as "using DataStage".
by ray.wurlod
Tue Dec 26, 2006 3:17 pm
Forum: General
Topic: Differences between Join, Merge and Lookup Stages.
Replies: 12
Views: 6437

If you attend the IBM DataStage Essentials class there is one page in the student guide that does attempt a summary of the differences between these three stage types. How about you make your own summary, based on reading the manual, and we can comment on that? You see, different things are importan...
by ray.wurlod
Tue Dec 26, 2006 3:13 pm
Forum: General
Topic: book about datastage and datawarehousing project
Replies: 6
Views: 2962

It was tried. It was killed by Ascential's legal department.
by ray.wurlod
Tue Dec 26, 2006 3:13 pm
Forum: General
Topic: Load from DataStage to SAP
Replies: 8
Views: 3253

Do you mean SAP R/3 or SAP BW ?

The answer to that question will determine which PACK (packaged application connectivity kit) you require.
by ray.wurlod
Tue Dec 26, 2006 4:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic Transformer in Parallel job
Replies: 24
Views: 7040

Suman wrote:Server job now has to be converted to parallel job

Why?

If it isn't broken, don't fix it.
by ray.wurlod
Tue Dec 26, 2006 4:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SQL Server Enterprise
Replies: 2
Views: 780

SQL Server Enterprise stage is only available on Windows platforms. No amount of documentation will change this situation. You will need to use the ODBC Enterprise stage.
by ray.wurlod
Tue Dec 26, 2006 4:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Convert VARCHAR to Date
Replies: 5
Views: 1706

This question looks suspiciously like this recent thread - are you on the same project?
by ray.wurlod
Tue Dec 26, 2006 4:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential Target file should not be created if it size is 0
Replies: 7
Views: 1974

Search the forum. This question has been asked, and answered, a gazillion times before.
by ray.wurlod
Tue Dec 26, 2006 12:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restarting A Sequence
Replies: 5
Views: 1397

Yes; if you can plan it you can implement it. JobA has unconditional trigger to JobB. JobB has conditional trigger to JobC and second conditional trigger (Failure) to abort handler. JobC has unconditional trigger to JobD. JobD has conditional (failure) trigger to abort handler. You can use the same ...
by ray.wurlod
Mon Dec 25, 2006 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: convert MM/DD/YYYY IN TO DD-MON-YYYY
Replies: 18
Views: 10421

All of the derivations will generate NULL if there is NULL in the source. You need to do some detective work - perhaps using the debugger, perhaps using stage tracing - to determine in which line these NULL values are occurring. I would also ask you to demonstrate that what you are getting really is...
by ray.wurlod
Sat Dec 23, 2006 6:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using FIND or LOCATE in a derivation
Replies: 8
Views: 1890

If they're unique enough letter pairs Index() may still do it for you. Something like: (Index(Convert(",", "", LetterPairs), MyLetterPair, 1) - 1) / 2 + 1 or, keeping the delimiters, (Index(LetterPairs, MyLetterPair, 1) - 1) / 3 + 1 Surely ...
by ray.wurlod
Sat Dec 23, 2006 2:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to handle the warnings when using the stingTodate
Replies: 8
Views: 2433

Still waiting to hear from the original poster what the input format of the dates might be.
by ray.wurlod
Sat Dec 23, 2006 2:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TIMESTAMP(6) converted to Unknown while loading Metadata
Replies: 7
Views: 2278

It's all a matter of representation and standards. Oracle tends not to follow the standards used by the rest of the world. For example, a timestamp with no fractional seconds is TIMESTAMP(19) most everywhere else. With milliseconds it's TIMESTAMP(23,3) and with microseconds it's TIMESTAMP(26,6). Dou...
by ray.wurlod
Sat Dec 23, 2006 2:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Load Error - Oracle Enterprise stage
Replies: 3
Views: 1667

Doesn't Search work for you?

The sqlldr utility requires only regular Oracle authentication. You can discover the answer to the "special characters" quesion on the forum. Indeed, it's answered by you in .a recent post!
by ray.wurlod
Sat Dec 23, 2006 2:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using FIND or LOCATE in a derivation
Replies: 8
Views: 1890

For the example cited, INDEX would do the job. Index("ADCBJZ", InLink.TheChar, 1) Locate, Find and FindStr are, as you note, statements, and therefore not suitable for use in expressions unless encapsulated in routines. Otherwise the routine is not difficult. This one assumes a fie...