Search found 135 matches

by truenorth
Mon Jul 12, 2010 6:57 pm
Forum: Enhancement Wish List
Topic: Information Analyzer: Output directly to user-defined tables
Replies: 5
Views: 23220

Information Analyzer: Output directly to user-defined tables

Information Analyzer 8.1.2 Currently, Information Analyzer outputs task results, e.g., records that violate a rule, to its own table called IADB. If you want a detail exception report on those errant records using an external application like Oracle BI, you have to export the data out to a flat fil...
by truenorth
Wed Jul 07, 2010 12:06 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Any way to parameterize IA tasks?
Replies: 0
Views: 1576

Any way to parameterize IA tasks?

We are looking to run a data rule (IA 8.1.2) against a subset of a table, i.e., selected rows based on a condition. For example, we might run the task only against rows whose MATURITY DATE is >= a parameterized date. We're thinking of using Datastage to do the selection (easy enough) but we're wonde...
by truenorth
Thu Jun 03, 2010 6:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Read Dat file in datastage
Replies: 7
Views: 4611

If it's just a flat file, use the Sequential File stage.
by truenorth
Wed May 26, 2010 4:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Create multiple files without looping
Replies: 11
Views: 4819

In a Sort stage, turn key change column to True. This key change column stores 1 if the key value of the current row is not equal to the previous row's value or 0 if the key value of the current row is equal to the previous row's value. So whenever the key change column is 1, write to a new file. As...
by truenorth
Wed May 26, 2010 1:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to update null to zero
Replies: 7
Views: 4801

Just as I thought.

Tab_B left outer join Tab_A on ID

followed by

Transformer, where Tab_B.COL_B is derived from NullToZero(Tab_A.COL_A)

Where the ID matches, Tab_B.COL_B gets the value from Tab_A. Otherwise, it gets zero.
by truenorth
Wed May 26, 2010 12:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need to update null to zero
Replies: 7
Views: 4801

I'm not clear on the mapping, but consider using Oracle left outer join to netezza and NullToZero(value from netezza).
by truenorth
Wed May 26, 2010 12:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Expect to abort job after ...
Replies: 8
Views: 4578

Re: Expect to abort job after ...

videsh77 wrote:If this sequential file at the end of the job is non-empty, is there any way we can abort the job, so further stream of execution would not progress.
I'm confused by this. If you reach the end of the job wouldn't it be too late to abort it? Unless you're talking about a job sequence?
by truenorth
Wed May 26, 2010 12:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FOR / DO Looping in transformer
Replies: 9
Views: 2851

If I interpret your logic correctly that you want one occurrence of Y's, then use the constraint Flag = 'Y' in Transformer together with either a Sort (no dups) or Dedupe.
by truenorth
Tue May 25, 2010 5:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Switch/Case
Replies: 11
Views: 3548

AFAIK, switch/case has no equivalent in DS, other than the way priya suggested.
by truenorth
Tue May 25, 2010 5:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Switch/Case
Replies: 11
Views: 3548

AFAIK, switch/case has no equivalent in DS, other than the way priya suggested.
by truenorth
Thu May 13, 2010 11:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to perform self join
Replies: 10
Views: 4448

I understand the OP to mean he only wants one input into a Join stage, which requires two. So to do a self-join, I'm with you...two inputs, but both are the one physical input.
by truenorth
Wed May 12, 2010 10:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to perform self join
Replies: 10
Views: 4448

ksk wrote: i want to use only one input stage not two same input stage for example
But a join requires two input streams.
by truenorth
Tue May 11, 2010 4:00 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Can IA push metadata to Metadata Workbench?
Replies: 8
Views: 4540

And I take it a change to an existing attribute will not trash others.

Thanks again, gentlemen. You made this a lot clearer.
by truenorth
Mon May 10, 2010 7:33 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Can IA push metadata to Metadata Workbench?
Replies: 8
Views: 4540

We might add terms, contacts, policies, others. Page 49 of the v8.1.2 User Guide describes how: Metadata Management.

What's not clear to us yet is how this affects metadata already in MWB, how the two tools work together.

(btw, nice quote)
by truenorth
Mon May 10, 2010 4:01 pm
Forum: Information Analyzer (formerly ProfileStage)
Topic: Can IA push metadata to Metadata Workbench?
Replies: 8
Views: 4540

Thanks, gents. Actually, we want the detail records - not just the report - to be visible outside IA. We plan to use Oracle BI (Answers, Discovers) for reporting. But if we modify or enhance metadata from inside IA, we don't want to clobber what metadata was already created in MWB. Thanks for all th...