Search found 53125 matches

by ray.wurlod
Thu Jan 04, 2007 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning
Replies: 3
Views: 944

This isn't really a server job, is it?
by ray.wurlod
Thu Jan 04, 2007 4:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: load sequential file with varying number of columns
Replies: 7
Views: 2733

The message stated "delimiter not found". Check that the field delimiter in the table definition (record schema) matches that found in the file. You need to get that right before trying anything else. Is there any information in the first part of the record indicating its record type (format, number...
by ray.wurlod
Thu Jan 04, 2007 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ExecCommand output value
Replies: 44
Views: 10563

Do some detective work. Add a routine activity (UtilityMessageToLog) to report what actual value is being returned in $CommandOutput. Convert the field marks to something printable, for example Convert(@FM,"~",ExecuteCommand.$CommandOutput) You may be extracting the incorrect field...
by ray.wurlod
Thu Jan 04, 2007 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to create multiple rows from a row
Replies: 10
Views: 3766

I'm sure there's a solution possible in DataStage, probably involving Transformer and Remove Duplicates (keeping last) stages.
by ray.wurlod
Thu Jan 04, 2007 3:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What's Important ??
Replies: 3
Views: 844

Take/make time to read the installation and upgrade manual, and any additional documentation that accompanies the software, very carefully. Plan the process. Know the questions that will be asked by the install script, and have your answers ready. Make sure there's enough temporary space for transfe...
by ray.wurlod
Thu Jan 04, 2007 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing to a Sequential file
Replies: 12
Views: 2856

No it doesn't. It means that the file was created on a Windows machine, was transferred to the UNIX machine without translating the line terminator characters, and is now being processed on the UNIX machine.
by ray.wurlod
Thu Jan 04, 2007 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: New line character added when FTP using FTP enterprise stage
Replies: 5
Views: 1293

Etiquette Notes

Multiple posts relating to the same problem will not get you an answer any faster. It only annoys people who have to read redundant questions.

Hijacking old threads to do so builds additional resentment.
by ray.wurlod
Thu Jan 04, 2007 3:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem while FTP'ng a file
Replies: 1
Views: 742

Involve your support provider. If FTP Enterprise works differently from FTP plug-in stage - provided everything is configured identically - then you've probably uncovered a bug.
by ray.wurlod
Thu Jan 04, 2007 3:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HowTo extract data from binary file?
Replies: 15
Views: 4933

The FTP utility used to transfer the file may have effected translation from EBCDIC to ASCII.
by ray.wurlod
Thu Jan 04, 2007 3:37 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FAILURE OF ABAP EXTRACT HERE
Replies: 2
Views: 1058

What do you mean by "NOR REQUIRED"? The message indicates that a particular column is not in its expected position. This might be a failure in generating ABAP code (check the code), a rogue row in the table (check the table) or a metadata mismatch in your job design. Because it works sometimes I thi...
by ray.wurlod
Thu Jan 04, 2007 3:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Configuration File issue
Replies: 2
Views: 2425

Have you followed all the instructions in the manual about configuring and testing the rsh (or ssh) processes? Have you opened the firewall to the port numbers used for communication by parallel DataStage processes (from memory 10000 (APT_PM_STARTUP_PORT) and 11000 (APT_PM_CONNECTION_PORT)?
by ray.wurlod
Thu Jan 04, 2007 3:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding wait for file activity
Replies: 3
Views: 1095

The message informs you that no wait was required.
by ray.wurlod
Thu Jan 04, 2007 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help: Abnormal termination of stage
Replies: 13
Views: 4639

There are two slash characters in the pathname '/data//HASHED_M_STATE' - check to see how you are generating the pathname (parameters) and how the second slash comes to be. Perhaps the job parameter for the directory has a trailing slash and the constructed pathname in the stage has a slash between ...
by ray.wurlod
Thu Jan 04, 2007 3:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage software for unix operating systems
Replies: 4
Views: 919

It's always called DataStage. The individual product codes specify for which particular operating system it is. Your vendor has access to the relevant information. You can determine what's available from the IBM web site, if you're really interested. Beware that there are also version dependencies; ...
by ray.wurlod
Thu Jan 04, 2007 3:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Whats does this mean?
Replies: 13
Views: 3660

Find out who created the expression and ask them! Looks like a clumsy attempt to force an implicit conversion to string so that the Trim() function can be applied. But it's wrong. The proper way is to use an appropriate conversion function, such as StringToDecimal() in a Transformer stage or string_...