Search found 53125 matches

by ray.wurlod
Thu Jul 24, 2008 3:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bad record delimiter Fixed width length "\n" got &
Replies: 9
Views: 8955

Take a look at your data record based on the widths in the record schema. That these widths are specified means that this is how DataStage is parsing the record. In particular D will take only two characters from the record, and be padded with 28 pad characters.
by ray.wurlod
Thu Jul 24, 2008 3:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Renaming the CATEGORY in the Repository
Replies: 10
Views: 3205

Renaming a category does not change each object's internal reference to that category. That's why renaming category is not even supported in the GUI.
by ray.wurlod
Thu Jul 24, 2008 3:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 Warning
Replies: 7
Views: 2403

You have executed DELETE FROM table WHERE condition and no row in the table meets the condition. DB2 has returned an informational message showing you that this has obtained. Because it is an "unusual" event, DataStage logs it as an alert (warning).
by ray.wurlod
Thu Jul 24, 2008 3:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Build in Operator
Replies: 1
Views: 909

I think you mean "plug in". Yes you can - there is a Plug-In Stage Writers Guide available through your support provider. The stage itself is written in C (external to DataStage) and compiled and linked (again external to DataStage). It must be packaged and registered into DataStage. If you also wan...
by ray.wurlod
Thu Jul 24, 2008 2:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with aborting from transformer
Replies: 10
Views: 2652

You could also send email from the before-job subroutine that I mentioned earlier.
by ray.wurlod
Thu Jul 24, 2008 2:57 pm
Forum: General
Topic: Using environment variables at run time with a DB2 stage
Replies: 7
Views: 3631

Your longer description is the correct way to do it, as evidenced by the fact that it works. Please mark the thread as Resolved.
by ray.wurlod
Thu Jul 24, 2008 2:54 pm
Forum: General
Topic: How to get the DataStage Job Log For All Projects.
Replies: 11
Views: 13634

Problem with grep/awk approach is that dsjob -logsum gives two lines per log entry.
by ray.wurlod
Thu Jul 24, 2008 5:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with aborting from transformer
Replies: 10
Views: 2652

Not if the Job activity has a Failure trigger leading the Notification activity.
by ray.wurlod
Thu Jul 24, 2008 5:29 am
Forum: General
Topic: How to get the DataStage Job Log For All Projects.
Replies: 11
Views: 13634

No.
by ray.wurlod
Thu Jul 24, 2008 5:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage PX Warning:
Replies: 7
Views: 2165

World Wildlife Fund ?
:?
by ray.wurlod
Thu Jul 24, 2008 5:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to specify the timestamp format for the field like this?
Replies: 5
Views: 1447

You could read it as a VarChar (or maybe even Char) and convert it to a conventional timestamp format.

(Which advice I am sure I have given in the past on DSXchange.)
by ray.wurlod
Thu Jul 24, 2008 5:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: SCD stage output
Replies: 8
Views: 2863

That's a good trick. There's no such certification for DataStage mentioned on the IBM web site - currently the only version 8 certification mentioned there is Information Analyzer.
by ray.wurlod
Thu Jul 24, 2008 5:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage PX Warning:
Replies: 7
Views: 2165

Not is like somebody's name - IS somebody's name.

And you are correct that Wurlod can be derogatory - just ask my former girlfriend!
by ray.wurlod
Thu Jul 24, 2008 5:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with aborting from transformer
Replies: 10
Views: 2652

Depending on what your criteria are, you could create a before-job subroutine in which setting ErrorCode to a non-zero value will cause the job to abort before it processes any rows.