Search found 42189 matches

by chulett
Sun Jun 30, 2013 8:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to generate serial number
Replies: 9
Views: 2073

Sorry but that just looks like math to me... as in "add one". What's the actual problem you're having here - how to combine the two sources in a serial fashion? What have you tried? It would help if you let us know what your sources actually are... files or tables.
by chulett
Sat Jun 29, 2013 10:05 pm
Forum: General
Topic: Unknown value in command outpout varaible in Exec cmd activi
Replies: 5
Views: 1611

Not a problem... same answer applies anyway. And stop piping cats, there's absolutely no need to be doing that. If you want to know the number of records in a file, just do:

wc -l <filename>
by chulett
Sat Jun 29, 2013 2:25 pm
Forum: General
Topic: Unknown value in command outpout varaible in Exec cmd activi
Replies: 5
Views: 1611

Perform the 'cat' from the command line yourself with an invalid filename and note what gets written to the screen. That would be the 'Command Output' in that case. Why a 'cat'? What exactly are you trying to capture, does your file only have a single record in it and you need to contents of that re...
by chulett
Sat Jun 29, 2013 2:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading records takes long time:Oracle enterprise stage
Replies: 7
Views: 3569

Conduct a test. Write your records to a flat file, note the time it takes. Remove all of the 'set null' handling, rerun.

Did you confirm it actually did a BULK load? (DIRECT=TRUE)
by chulett
Sat Jun 29, 2013 9:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dynamic XML Schema to read in job
Replies: 2
Views: 1427

<toned down the shouting in the topic>

How will you recognize the schema being used? Do they have a fixed set of configurations or can they be pretty much any random thing?

You also said you need to parse it "and create different column"... what exactly does that mean?
by chulett
Sat Jun 29, 2013 7:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Load after aborted data?
Replies: 5
Views: 1705

In other words, you need to design that capability into your jobs. How you do that depends on many factors such as the nature of both the load and the data being loaded. Primary question in my mind is - is your source data static? Will record #65000001 be the same on the rerun as it was on the first...
by chulett
Fri Jun 28, 2013 3:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get percentage (%) of match
Replies: 9
Views: 2195

SKP - I'd really like to see your answer to the second question of mine as it will change the logic you'd need to build. Repeating:

S: "abcdefghij"
R: "abddefghij" - is this a 20% match or a 90% match?
by chulett
Fri Jun 28, 2013 11:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator stage error
Replies: 17
Views: 6033

:!: Bhanu - please use the Reply to topic button, there's no need to constantly 'Reply with quote' when we can all see the text of the message you are replying to. Thanks.
by chulett
Fri Jun 28, 2013 6:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Load into SAP - Confirmation Response?
Replies: 2
Views: 2021

So... this is resolved? :?
by chulett
Thu Jun 27, 2013 1:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Loading records takes long time:Oracle enterprise stage
Replies: 7
Views: 3569

You can't do a DIRECT (i.e. bulk) load on a table with indexes so it switched to a conventional load - inserts. You would need to add the index options it needs to allow the bulk load to happen.
by chulett
Thu Jun 27, 2013 7:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get percentage (%) of match
Replies: 9
Views: 2195

You're going to have to explain how to compute this percentage, were you given any requirements or guidelines along with this task? How about examples? Source: "abcdefghij" Reference: "abcdewqar" - is this a 50% match? Reference: "abddefghij" - is this a 20% match or a ...
by chulett
Thu Jun 27, 2013 6:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get percentage (%) of match
Replies: 9
Views: 2195

Not even really sure what 'percentage of match' would be. Is this QualityStage related?
by chulett
Wed Jun 26, 2013 1:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete and Insert
Replies: 4
Views: 1139

You wouldn't be able to bulk load if you went the delete and insert route as that turns every insert into two operations - first a transactional delete and then the insert. Better to 'bulk' delete and then bulk load.
by chulett
Wed Jun 26, 2013 1:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to populate previous row using transformer
Replies: 3
Views: 943

Not sure there's a need for that. How familiar are you with stage variables? This is pretty basic 'group change detection' logic you would need to leverage. There are a number of examples that you could adapt for this, here is one.