Search found 42189 matches

by chulett
Mon Mar 03, 2014 1:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture Only Not matching rows
Replies: 4
Views: 1076

They have to be checked one way or another so it's not like wasted processing time. Alternately, you could load the file into your database and use SQL to get the non-matches but regardless 100% of the data needs to be checked.
by chulett
Mon Mar 03, 2014 12:52 pm
Forum: General
Topic: Customer Dimension
Replies: 12
Views: 3782

High level would be the consolidated table of customers and a crosswalk / reference table to define the one-to-many relationship between the two.

How were you planning on determining that Customer XYZ in Source 1 was the same entity as Customer 567 in Source 3?
by chulett
Mon Mar 03, 2014 12:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture Only Not matching rows
Replies: 4
Views: 1076

Sure. Set the Lookup's "Failed lookup" rule to Continue and allow only null key columns downstream from there.
by chulett
Mon Mar 03, 2014 11:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Encrypted File
Replies: 1
Views: 709

Sure, if you can decrypt to standard out the Sequential File stage can read that input stream. Leverage the decryption tool in the Filter property of the stage so that it is not at rest in an unencrypted form.
by chulett
Mon Mar 03, 2014 10:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: COBOL flat file import
Replies: 28
Views: 16574

FTP is notorious for stripping trailing spaces in records. Can you find another mechanism to move the files, say like scp?
by chulett
Mon Mar 03, 2014 9:09 am
Forum: General
Topic: Customer Dimension
Replies: 12
Views: 3782

i want to maintain Single customer view here as there may be same customer in several sources, in that case i jsut need to have only one customer in customer dimension table. No, you don't. You may need another 'consolidated' view of them, however. Sounds like a MDM layer / system may be in order.
by chulett
Mon Mar 03, 2014 8:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Coding Bulk and Inserts/Updates
Replies: 3
Views: 1472

Re: Coding Bulk and Inserts/Updates

Raftsman wrote:I am also not sure whether the Bulk loader will use up a connection in the job for nothing when not used
It will.

FWIW, in the very small number of times where I've had to differentiate between an initial and subsequent loads, I've created two jobs.
by chulett
Mon Mar 03, 2014 8:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Functionality of Preserve Partition
Replies: 1
Views: 1081

They're not the same. One recent discussion is here:

viewtopic.php?t=151955
by chulett
Mon Mar 03, 2014 8:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Senario?
Replies: 2
Views: 882

Or use a Sort stage to generate a Key Change column on the first field and then all you need is:

Code: Select all

svRunningTotal: If KeyChange then COL2 else svRunningTotal + COL2
And of course, mind your partitioning.
by chulett
Mon Mar 03, 2014 8:00 am
Forum: General
Topic: Customer Dimension
Replies: 12
Views: 3782

Not really a DataStage question, is it? However...

Use a surrogate for the PK and add a 'source id' column fk'd back to a source system reference table. Track the source customer 'key' in a string.
by chulett
Fri Feb 28, 2014 10:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage job hanging up while decimal(12,3) to decimal(10,3
Replies: 13
Views: 4030

syedmuhammedmehdi wrote:It is just hanging up without any warning.
Understood. Was just saying that I thought it should log a warning rather than aborting. Or hanging, of course. In your shoes I'd involve your official support provider to help figure this one out.
by chulett
Fri Feb 28, 2014 8:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to open transport FIFO
Replies: 4
Views: 873

As noted, post details of your job design. :?
by chulett
Fri Feb 28, 2014 8:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CheckSum Stage in datastage
Replies: 13
Views: 8297

Odd... "client" should just care that the job works correctly and is efficient. These kind of situations where they dictate stuff like this is just silly to me and not something I would stand for. But maybe that's just me.
by chulett
Fri Feb 28, 2014 8:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage job hanging up while decimal(12,3) to decimal(10,3
Replies: 13
Views: 4030

Or just log a warning. That is strange. What happens if you add a reject link to the target stage?
by chulett
Fri Feb 28, 2014 8:21 am
Forum: General
Topic: Multiple jobs on the same Designer canvas
Replies: 7
Views: 2530

Sure... as long as one understands that they all run at the same time, can finish in any order and if you have any issues with one of the "pipelines" you'll need to re-run all of them.