Search found 42189 matches

by chulett
Fri Aug 25, 2006 7:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Track duplicate rows in the source data
Replies: 4
Views: 1943

datastage1 wrote:Is there any way to give points for the correct n helpful answers in these forums as i am new here.

That's coming... currently being tested by a small group of people.
by chulett
Thu Aug 24, 2006 6:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: TeraData API Lookup based on a flat file
Replies: 6
Views: 2540

Did the stage generate that SQL or did you? I would think your parameter marker would look more like :1 or ? rather than being bound using a column name. :?
by chulett
Thu Aug 24, 2006 3:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Automated job generation
Replies: 5
Views: 2311

What Ken is talking about can be done but isn't simple. To get an idea of what would be involved, first create a 'skeleton' job that would be your base job with no metadata in it and export it to a .dsx. Then add in the metadata for one table and export it to another .dsx. Look at the differences be...
by chulett
Thu Aug 24, 2006 12:55 pm
Forum: General
Topic: To move a post
Replies: 4
Views: 3000

Keep in mind the fact that you can only delete a post that doesn't have any replies made to it. You can always edit your own posts, however.
by chulett
Thu Aug 24, 2006 8:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: merge stage
Replies: 4
Views: 1029

You might want to try clicking on the Help button inside the stage itself.
by chulett
Thu Aug 24, 2006 7:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameters for IF condition
Replies: 5
Views: 1066

Why not just do something with a Lookup? Build a table with the subsitution values and use that. When values change or are added, no change to the job itself would be needed.
by chulett
Thu Aug 24, 2006 7:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Delete a category from command line
Replies: 15
Views: 4710

OP is looking for deletion of category and not job. How do you know this? The OP didn't explicitly state that. My first thought was that they wanted to delete a category - and all jobs in it - from the command line and that's where my money is. Regardless, please be careful about handing out advice...
by chulett
Thu Aug 24, 2006 7:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CAn we capture the JOBSTATUS in After job subroutine
Replies: 5
Views: 1876

Exactly. So use a Sequence job to do the check after the job completes and to conditionally send the email.
by chulett
Wed Aug 23, 2006 10:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: merging two files
Replies: 3
Views: 1315

You don't need a DataStage job to 'combine' or merge two flat files, if the two files have the same metadata and merge means concatenate the two together. Take our Guru friend's cat command and add the missing redirection: cat SRCFILEA SRCFILEB > SCRFILEC A script can do this. Or the Merge stage if ...
by chulett
Wed Aug 23, 2006 7:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: passing a parameter inside After-job Subroutine
Replies: 25
Views: 5318

You could create an 'empty' hashed file that anything like this could leverage. To clear the source hashed file would be as simple as copying the DATA.30 and OVER.30 from the empty hashed file into the current hashed file's directory. You could also clear it in the GUI. Another link to an Aggregator...
by chulett
Wed Aug 23, 2006 3:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: This jobtype is not currently runnable on this platform
Replies: 7
Views: 4114

Yes - you specifically need the 7.5x2 version in order to run PX jobs on Windows. With other versions you can only develop PX jobs.
by chulett
Wed Aug 23, 2006 8:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how can we reset the job sequence
Replies: 1
Views: 459

One way would be to search the forum for KeyMgtGetNextValue and you'd find posts like this one.
by chulett
Wed Aug 23, 2006 7:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compare values with File name
Replies: 1
Views: 474

This is a duplicate post. If you'd like to respond to it, please do so in this one instead.
by chulett
Wed Aug 23, 2006 7:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Writing to Oracle Table is slow
Replies: 8
Views: 2289

Writing to a DB with an Update action of Update/Insert or Insert/Update is always going to be slow..in fact very very slow. Always split your Updates and Inserts. Load them through two seperate links and then it will very much faster. I totally agree. Not just slow but typically the slowest way you...
by chulett
Wed Aug 23, 2006 7:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: replace
Replies: 10
Views: 2759

Or:

Code: Select all

"xyz":In.Col[2,Len(In.Col2)]

:wink: