Search found 53125 matches

by ray.wurlod
Tue Jun 11, 2013 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to reject only junk values
Replies: 6
Views: 2303

Do you have authority from the data owner arbitrarily to delete some of the characters in their data? (There are no "junk" characters.) If the data owner needs to have particular characters removed, the "double Convert()" technique is recommended. Otherwise you have to work out h...
by ray.wurlod
Tue Jun 11, 2013 2:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ORA-24806: LOB form mismatch
Replies: 13
Views: 12693

This is an Oracle error (-24806), not a DataStage error. The error is generated from stage TABLE_XYZ, so you can tell from that whether it's the source or target.
by ray.wurlod
Tue Jun 11, 2013 2:26 pm
Forum: General
Topic: installation 8.0 version
Replies: 2
Views: 1043

DataStage 8.0 needs to be installed on Windows NT 4.0. Neither is supported.
by ray.wurlod
Tue Jun 11, 2013 2:24 pm
Forum: General
Topic: Password In Encyrpted format
Replies: 3
Views: 1163

DataStage can not "interpret" anything. All it can do is compare two strings - encrypted or otherwise - to determine whether they are the same.
by ray.wurlod
Tue Jun 11, 2013 3:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Removing duplicates on all columns except one.
Replies: 5
Views: 1700

That is not what your example shows.

In the Remove Duplicates stage specify your "all columns except Start Date".

For that to work properly, you need to have sorted on all columns, and partitioned on at least the highest level sort key.
by ray.wurlod
Tue Jun 11, 2013 3:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ANSI to UTF-8
Replies: 9
Views: 10114

Can you explicitly set the extended property "Unicode" for each character string?
by ray.wurlod
Tue Jun 11, 2013 3:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Length mismatch
Replies: 6
Views: 2327

What is the data type of the final field? If it's VarChar, then a length mismatch will be tolerated.
by ray.wurlod
Tue Jun 11, 2013 3:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Creating multiple files with header based on data
Replies: 1
Views: 833

Although it's still using the operating system (or a routine), you can write the header in a before-job subroutine then, in the job, append to the file.
by ray.wurlod
Tue Jun 11, 2013 3:00 am
Forum: General
Topic: Password In Encyrpted format
Replies: 3
Views: 1163

Only if you have the decryption algorithm.

DataStage can be used to compare encrypted strings. That is, one encrypted string with/against another encrypted string.
by ray.wurlod
Mon Jun 10, 2013 7:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: lookup output values
Replies: 9
Views: 2777

If the lookup fails and your Lookup Failed rule is "Continue", Col2 will be null - you don't have to check for "" unless Col2 = "" is a possible valid return value that you need to handle - this is not the case in your example. Indeed, NullToValue(InLink.Col2, "~&q...
by ray.wurlod
Mon Jun 10, 2013 3:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to read SDO_geometry() datatype in DataStage
Replies: 3
Views: 1856

Try using an explicit CAST in the SELECT statement to force the database to deliver you a LONG VARCHAR.
by ray.wurlod
Mon Jun 10, 2013 3:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Length mismatch
Replies: 6
Views: 2327

Is one of those records the header line and you have "first line is column headings" set?
by ray.wurlod
Mon Jun 10, 2013 3:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ANSI to UTF-8
Replies: 9
Views: 10114

Does this indicate that your problem is resolved? If so, please mark this thread as Resolved, to assist future searchers.
by ray.wurlod
Mon Jun 10, 2013 2:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Set environment variable APT_PERFORMANCE_DATA at job level
Replies: 3
Views: 2013

How heavily loaded is your system and, in particular, are there very many logging events occurring when the reported failure occurs. The fact that the Logging Agent cannot establish a(nother) connection suggests a transient lack of resources.
by ray.wurlod
Mon Jun 10, 2013 2:53 pm
Forum: General
Topic: Command activity checking for a file pattern
Replies: 2
Views: 964

The Execute Command activity executes a command in the operating system, in this case Windows. To execute MKS Tookit commands, its bin directory must be named in the Windows PATH environment variable. Another approach would be to name a UNIX shell explicitly in the command you are executing, for exa...