Search found 53125 matches

by ray.wurlod
Thu Jul 17, 2014 5:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage responsible for APTCombinedOperatorController Warning
Replies: 2
Views: 1276

Optionally add the environment variable APT_DISABLE_COMBINATION to your job as a parameter. Set its value to True before running the job (whether it's the parameter or the project-wide setting).
by ray.wurlod
Thu Jul 17, 2014 12:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to search for a pattern in a string?
Replies: 8
Views: 3174

Use a BASIC Transformer and the MatchField() function. Indeed, consider using a server job rather than a parallel job, since its Sequential File stage is substantially more forgiving of variant formats. For example: Matchfield(InLink.TheString, \0X'"'0N','0N'"'0X\, x) applied to your data ...
by ray.wurlod
Wed Jul 16, 2014 8:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to search for a pattern in a string?
Replies: 8
Views: 3174

Search for it with Index() function, replace it by assembling substrings of that which precedes it, the new value, and that which follows it.

When you upgrade to version 9.1 or later you can use the Ereplace() function, which you could use now in a BASIC Transformer stage.
by ray.wurlod
Wed Jul 16, 2014 2:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Question on DB2 Connector Parameter
Replies: 6
Views: 1448

Another question: is the behaviour different when there is only one item in the IN list?
by ray.wurlod
Wed Jul 16, 2014 2:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage decimal_from_string
Replies: 7
Views: 4245

You could use the string_trim() function in the Modify stage to remove the comma.

Why do you wish to avoid using Transformer stage?
by ray.wurlod
Wed Jul 16, 2014 5:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Japanese .xlsx data handling in DatStage 8.7
Replies: 10
Views: 5005

Welcome aboard. There are no options for reading XLSX files on UNIX in DataStage 8.7. You need first to export them to CSV or some other text format. And you will need to do this on a Windows machine set to use similarly coded Japanese characters. In version 9.1.2 and later you might be able to use ...
by ray.wurlod
Wed Jul 16, 2014 5:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage scenario on reading data
Replies: 1
Views: 1267

Three output links from Transformer stage, constrained by expressions testing the three possible values returned by

Code: Select all

Mod(Int(@INROWNUM/20),3)
by ray.wurlod
Tue Jul 15, 2014 7:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Modify Stage warning : varchar(255) to varchar(50)
Replies: 3
Views: 1763

Indeed. Use a message handler to demote this message to informational.
by ray.wurlod
Tue Jul 15, 2014 7:03 pm
Forum: General
Topic: DataStage 9.1 Certification
Replies: 11
Views: 15166

The exam for 11.3 is quite some way away yet. The team only begins reviewing test items once the product becomes generally available, so that they don't ask questions about functionality that didn't make it into the shipped product.
by ray.wurlod
Tue Jul 15, 2014 4:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NLS setting for Japanese character in Datastage 8.5
Replies: 3
Views: 5078

Please mark your topic as Resolved using the green button.
by ray.wurlod
Tue Jul 15, 2014 2:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage to map same input column to 2 different output columns
Replies: 4
Views: 1290

The news that the Transformer stage is a performance bottleneck is old news and no longer correct.

That said, you can also use the Column Import stage to effect your requirement.
by ray.wurlod
Tue Jul 15, 2014 2:54 pm
Forum: General
Topic: DataStage 9.1 Certification
Replies: 11
Views: 15166

There is a lot of overlap between versions 8.x and 9.1 of DataStage and this is reflected in the certification exam. If you have certification at 8.x then you should have no great difficulty with the 9.1 exam (which I have passed). It would be worth reading the "what's new in this release"...
by ray.wurlod
Tue Jul 15, 2014 4:15 am
Forum: General
Topic: 11.3 only DB2 repository
Replies: 4
Views: 1528

Temporary.
by ray.wurlod
Tue Jul 15, 2014 4:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic Transformer in Parlell job getting Aborting
Replies: 3
Views: 2079

It is possible to use the BASIC Transformer stage in a grid environment, but only on nodes on which the server engine (DSEngine, as opposed to the parallel engine PXEngine) is accessible. In most cases that means restricting these stage types to the head node(s).
by ray.wurlod
Tue Jul 15, 2014 1:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To Convert Dynamic XML Files into CSV Files
Replies: 5
Views: 2928

So why would you expect DataStage to be able to parse it without metadata (for that's what the XSD really is)? I guess you could do this in DataStage, via some kind of intermediate table or hashed file - you would need to read the XML as a single stream of characters and parse whatever's between ope...