Search found 53125 matches

by ray.wurlod
Mon Apr 30, 2007 5:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: result value, SQLSTATE value, message text, or scratchpad wh
Replies: 3
Views: 1883

It is a tool and skill that a DBA would have, not necessarily that a DataStage developer would have.
by ray.wurlod
Mon Apr 30, 2007 4:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: simple if statemnet
Replies: 8
Views: 1724

That could be done with a single expression; you could store it as a reusable component (as a Transform).

Code: Select all

If IsNull(Arg1) Then "" Else Upcase(Convert(" ":Char(10):Char(13),"",Arg1))
by ray.wurlod
Mon Apr 30, 2007 4:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I don't understand!!
Replies: 9
Views: 1569

Maybe your Oracle date picture is set up to require an alphabetic month. You can use TO_DATE function in Oracle INSERT statement to "translate" from other formats, or generate a date in the expected format. Find out (perhaps using a SELECT statement) what your default Oracle date picture is.
by ray.wurlod
Mon Apr 30, 2007 4:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: connecting sybase database using routines
Replies: 6
Views: 1050

Create a job that retrieves them from Sybase into a hashed file. Use key names that map to the parameter names. Use UtilityHashLookup() or Trans() - note that the name is case sensitive - to retrieve the parameter values from the hashed file. Use them directly in the job sequence's expressions if yo...
by ray.wurlod
Mon Apr 30, 2007 1:16 am
Forum: IBM<sup>®</sup> DataStage TX
Topic: Trouble in inserting a date into oracle9i
Replies: 2
Views: 1820

Welcome aboard. :D

This question needed to be posted in the DataStage Server forum. The forum that you chose is for a completely different product, the DataStage transformation extender (TX).

Post in the correct forum, and I'm sure an answer will be forthcoming fairly quickly.
by ray.wurlod
Mon Apr 30, 2007 1:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: connecting sybase database using routines
Replies: 6
Views: 1050

The correct solution is to get a better requirement. You have DataStage, with the ability to connect to Sybase and move data to and fro, built in. Why do you want to write in code what you've spent lots of dollars to buy? It makes no sense whatsoever. Connect via a job. The job can capture the Sybas...
by ray.wurlod
Mon Apr 30, 2007 1:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File read problem
Replies: 4
Views: 1185

The data are being parsed correctly according to your metadata. You specify quote=none, so the quote characters are treated as ordinary characters. You now have four comma-delimited fields. That's what you've described to DataStage. If your data are coming in in inconsistent format, harrass your dat...
by ray.wurlod
Mon Apr 30, 2007 1:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Certification
Replies: 3
Views: 1505

Not according to the presentations about DataStage certification at IOD 2005. All correct or not correct was the story.
by ray.wurlod
Mon Apr 30, 2007 1:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Best approach for unknown varied source
Replies: 19
Views: 5646

Returning to the original topic, the "Best approach for unknown varied source" is, in my opinion to push back hard against such an insane requirement. At least demand a small and finite number of possible formats, and some easy means to detect the format in the first line of the source file.
by ray.wurlod
Mon Apr 30, 2007 12:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Wrapper Stage
Replies: 12
Views: 2973

No it doesn't - it produces its output into the virtual Data Set whose control file name is 'Median_19:ln_op_Median.v' What you have posted is a small piece of the generated OSH. While it is true that this is logged, it is NOT the event that reports any error. Is there any event in the log with a se...
by ray.wurlod
Mon Apr 30, 2007 12:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Scheduling jobs using Unix Script
Replies: 5
Views: 1182

It is possible to create a batch, but all you get there is sequential (consecutive) dependency. Do you really want to execute ALL the jobs in the project? What would that achieve? Far better is to create a job sequence, in which you have all the controls a scripting language has, without the need to...
by ray.wurlod
Mon Apr 30, 2007 12:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Metadata mismatch after migration
Replies: 1
Views: 707

7.5 applies the rules more rigorously. Earlier versions treated Decimal and Numeric as the same, to all intents and purposes. Correct the imported table definitions, then re-load them into your jobs.
by ray.wurlod
Mon Apr 30, 2007 12:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dynamic generation of rows
Replies: 8
Views: 1260

Is the same delimiter used within lists as well as between fields (lists)? If so you have a major parsing problem on your hands. The easiest way would be to employ the multi-value handling capabilities of hashed files or UniVerse tables - write multi-valued fields to, say, a UV stage then read from ...
by ray.wurlod
Mon Apr 30, 2007 12:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: result value, SQLSTATE value, message text, or scratchpad wh
Replies: 3
Views: 1883

Have your DB2 DBA enable tracing so as to capture the value that is generating the error.

Do you really have a table called "014"? Do you have a job design that has "014" as the table name in a stage?
by ray.wurlod
Mon Apr 30, 2007 12:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job aborts in half the way
Replies: 5
Views: 1635

:idea: Employ a pair of Code tags to make your "ASCII art" appear correct.