Search found 53125 matches

by ray.wurlod
Thu Mar 06, 2008 11:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring using modify stage
Replies: 15
Views: 6068

But it was stated that the source column is of type Date. Therefore you can not use date_from_string().
by ray.wurlod
Thu Mar 06, 2008 11:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring using modify stage
Replies: 15
Views: 6068

But it was stated that the source column is of type Date. Therefore you can not use date_from_string().
by ray.wurlod
Thu Mar 06, 2008 11:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is DSExecute command does?
Replies: 1
Views: 929

Probably not, because there is no DSExecute command.

If you consult Help, you will learn about the DSExecute subroutine which is something you use in routines.
by ray.wurlod
Thu Mar 06, 2008 11:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: **VIEWDATA ROW LIMITER HIT**
Replies: 17
Views: 17009

Disable operator combination and see whether that has any impact. There are several messages in what you posted dealing with operator combination.
by ray.wurlod
Thu Mar 06, 2008 11:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring using modify stage
Replies: 15
Views: 6068

There is no way within DataStage to accomplish this task without a Transformer or Build stage. If the data are coming from a file you might use a Filter command, if coming from a database you might use an SQL expression. But these are not what I include in "within DataStage" techniques.
by ray.wurlod
Thu Mar 06, 2008 11:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Archival Problem
Replies: 3
Views: 1231

Have two job parameters, one with the current month, the other with the previous month, in the desired format for the file names. In a before-job subroutine use ExecSH to execute an appropriate mv command, for example mv /usr/Data/MyFile#PrevMonth#.csv /usr/Archive Use the second (current month) job...
by ray.wurlod
Thu Mar 06, 2008 10:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transferring Language Sensitie Data from SQL Srver to Oracle
Replies: 10
Views: 5888

Why would you even expect "non-English data" (more technically, I guess, characters outside the specified map set) to be handled properly by a particular character map? (Almost?) all maps incorporate the "English" characters, so choose the one that accurately represents how those other characters ar...
by ray.wurlod
Thu Mar 06, 2008 8:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: **VIEWDATA ROW LIMITER HIT**
Replies: 17
Views: 17009

View Data runs its own osh script (you can choose to look at it in one of the dialog screens). This script has hit some in-built row limit. Try limiting View Data to only a few rows, then increase it gradually.
by ray.wurlod
Thu Mar 06, 2008 8:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need some advise on how to merge data in a server job.
Replies: 12
Views: 3138

That's what I was trying to get at with my question. In too much of a rush, I guess.
by ray.wurlod
Thu Mar 06, 2008 8:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need some advise on how to merge data in a server job.
Replies: 12
Views: 3138

That's what I was trying to get at with my question. In too much of a rush, I guess.
by ray.wurlod
Thu Mar 06, 2008 8:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in Start Loop Activity
Replies: 7
Views: 2647

You might like to convert the @FM characters in the command output to commas (for example) or one of the "standard" delimiters handled by the Start Loop activity.
by ray.wurlod
Thu Mar 06, 2008 8:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in writing log summary to a file
Replies: 13
Views: 4295

That's no surprise. If it's stopped it can't write anything. Neither could you.
by ray.wurlod
Thu Mar 06, 2008 8:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loading Taiwanese data into SAP R/3
Replies: 3
Views: 1718

You will definitely need NLS enabled for DataStage to process Taiwanese data. Taiwan uses traditional, rather than simplified Chinese, so there are very many more Unicode codepoints to be mapped. Even so, the map should fit into shared memory without any tuning being needed.
by ray.wurlod
Thu Mar 06, 2008 7:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in writing log summary to a file
Replies: 13
Views: 4295

If you are running this from an after-job subroutine, then that job is not finished so you can never get the "job finished" message from the job log.

The job isn't finished until its after-job subroutine is also finished.
by ray.wurlod
Thu Mar 06, 2008 5:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need some advise on how to merge data in a server job.
Replies: 12
Views: 3138

Or maybe the other way around, assuming the aggregates will be smaller. Load each into a hashed file, stream in from the parent, perform a lookup against each hashed file, and output to sequential file stage. What do you wish to do in the event of a non-match?