Search found 53125 matches

by ray.wurlod
Wed Oct 23, 2013 1:17 pm
Forum: General
Topic: DataStage objects information into a relational table
Replies: 4
Views: 2658

This information should already be stored in relational form in the XMETA database. But it's painful to get out of there. You can get some of the information you require using DataStage API calls,and the remainder from various tables whose names begin with DS_ in the project itself. Search DSXchange...
by ray.wurlod
Wed Oct 23, 2013 1:13 pm
Forum: General
Topic: Errors on DS 8.7 Fix Pack 2
Replies: 2
Views: 2400

Welcome aboard.

The error is "ADMA5014E: The installation of application common_metadata_ai.ear failed."

Was WebSphere Application Server running when you attempted to install the fix pack?
by ray.wurlod
Tue Oct 22, 2013 11:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a logic to implement in Datastage
Replies: 9
Views: 3240

In which case all of the above advice is apposite.
by ray.wurlod
Tue Oct 22, 2013 11:47 pm
Forum: General
Topic: Unable to open DS clients when server firewall is enabled
Replies: 5
Views: 1921

Welcome aboard.

There are some ports that have to be open for inbound traffic in addition to those open for outbound. The error message(s) suggest which ports. Or you can refer to the Planning, Installation and Configuration Guide
by ray.wurlod
Tue Oct 22, 2013 11:45 pm
Forum: General
Topic: IBM InfoSphere MDM Standard Edition
Replies: 1
Views: 644

I'd suggest that you prepare specifically for version 9. The same bank of questions is not used between versions of the tests, and you would need to identify and eliminate from your mind the new features in version 10.
by ray.wurlod
Tue Oct 22, 2013 7:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a logic to implement in Datastage
Replies: 9
Views: 3240

One could use a Column Import stage with sufficient target columns.

There's no convenient way to use looping to populate an arbitrary number of target columns unless, again, you have at least sufficient target columns.
by ray.wurlod
Tue Oct 22, 2013 7:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Functions in datastage
Replies: 7
Views: 2034

Seems to me you'll need something more like a Regular Expression to detect the presence of four contiguous occurances of the same letter in your data. This is do-able in DataStage if you have the Data Rules stage, which implies version 8.7FP1 or later and an Information Analyzer licence. One of the...
by ray.wurlod
Tue Oct 22, 2013 5:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Functions in datastage
Replies: 7
Views: 2034

Above Expression gives the position as 2 . Depends what's in InLink.TheColumn - which you did not indicate before making this assertion. Let me be clear with the requirement. If the column from the file has data NSAAAAI then the record is rejected since there is 4 consecutive A's in it. I did not r...
by ray.wurlod
Tue Oct 22, 2013 1:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Functions in datastage
Replies: 7
Views: 2034

Welcome aboard. Do you have knowledge of the "alphabet" at job run time? If so you can make it a job parameter and use an Index() function to search for four contiguous occurrences of that value. Index(InLink.TheColumn, "#jpLetter##jpLetter##jpLetter##jpLetter#", 1) will be zero ...
by ray.wurlod
Tue Oct 22, 2013 1:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to design below job in DataStage?
Replies: 2
Views: 931

It's not clear how the output is to be generated. Please express the rules in words (this is called a specification, and is a skill you need to develop in any case).
by ray.wurlod
Tue Oct 22, 2013 1:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get the below scenario using DataStage?
Replies: 2
Views: 810

I would not be using DataStage to perform what is an obviously simple SQL query.
by ray.wurlod
Tue Oct 22, 2013 1:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a logic to implement in Datastage
Replies: 9
Views: 3240

Looks like a task for a Column Import stage.
by ray.wurlod
Tue Oct 22, 2013 1:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion Error
Replies: 3
Views: 1164

Your decimal precision must be at least 8. Its scale should be 0.
by ray.wurlod
Tue Oct 22, 2013 2:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Web service invocation with huge volume of data
Replies: 7
Views: 2935

Someone or something has knocked out the conductor node - hence the status of Crashed. Did someone issue a kill -9 command? With no conductor with which to communicate, the section leaders will take some time to react to that situation. In the interim the player processes - those doing the actual wo...
by ray.wurlod
Mon Oct 21, 2013 3:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sort stage or Link Sort
Replies: 1
Views: 841

Use an explicit Sort stage. Partition data by the sort key. The Sort stage allows you to allocate more memory than the default to the sorting operation, which means it takes longer before the sort has to spill to scratchdisk. You can control the default with an environment variable called APT_TSORT_...