Search found 42189 matches

by chulett
Fri Dec 10, 2010 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MS OLEDB stage Warning, no Fatal
Replies: 6
Views: 3070

No, he meant literally what he said - a single new link from the Transformer marked as a Reject link and set to abort after 1 would have accomplished the same thing. While what you did may work, it is complete overkill.
by chulett
Fri Dec 10, 2010 7:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while populating into the table
Replies: 3
Views: 1499

How about a few more details about what the database is and what you're trying to accomplish here?
by chulett
Thu Dec 09, 2010 10:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Distributed Transaction stage
Replies: 7
Views: 4515

That's because in order to do the 'all or nothing' part of the rollback for each 'transaction group' it forces the Transaction Size to 1.. It's the slowest way to put data in tables but also the only way to accomplish this. Seems like your only opportunity for improvement comes with the 8.5 release....
by chulett
Thu Dec 09, 2010 10:32 pm
Forum: General
Topic: Shell script to start a job using dsjob
Replies: 13
Views: 37036

Not so much a starter as an ender IMHO. The one I typically use is much... simpler. :wink:
by chulett
Thu Dec 09, 2010 7:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Comparing two timestamp fields in transformer
Replies: 7
Views: 3152

No worries! :wink:
by chulett
Thu Dec 09, 2010 4:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Comparing two timestamp fields in transformer
Replies: 7
Views: 3152

Meaning they should compare just fine. :wink:

What issue are you seeing? What makes you think that isn't happening properly? Can you provide some specific examples?
by chulett
Thu Dec 09, 2010 3:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Comparing two timestamp fields in transformer
Replies: 7
Views: 3152

That external format should compare just fine. Can you provide your exact syntax, input values and output?
by chulett
Wed Dec 08, 2010 7:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle and Connector not working in 8.1 after migration
Replies: 5
Views: 4251

Thank you for posting your resolution.
by chulett
Wed Dec 08, 2010 2:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routines to do
Replies: 8
Views: 2905

That would be via a lookup and in the Server product that means hashed files. For example, load up a hashed file with the appropriate columns from TC_BANK_HOLIDAY, looks like that would be HOLIDAY as the Key and (at a minimum) HOLIDAY_CODE as a data column. Then in your transformer reference link as...
by chulett
Wed Dec 08, 2010 12:36 pm
Forum: General
Topic: Validate Field in Transformer Stage
Replies: 1
Views: 1011

Please continue this conversation in your original thread, there's no need to open anything new.
by chulett
Wed Dec 08, 2010 10:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Distributed Transaction stage
Replies: 7
Views: 4515

You use a single target stage and multiple links from the transformer, then enable 'Transaction Grouping'. Master first via proper link ordering.
by chulett
Wed Dec 08, 2010 10:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routines to do
Replies: 8
Views: 2905

As noted, SQL in routines is not for the faint of heart and especially not one for someone new to the tool. Nothing here, however, sounds like a routine of any kind is required. These just sound like a series of cascading lookups to me with some if-then-else logic to decide which one to use.
by chulett
Wed Dec 08, 2010 8:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Average calculation
Replies: 2
Views: 1353

So... which is correct, Server or Parallel? :?
by chulett
Wed Dec 08, 2010 8:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non-pipe (or non-virtual data set) with .v in its name Error
Replies: 5
Views: 2515

An exact search for "Non-pipe (or non-virtual data set) with .v in its name" returned 28 other posts, did none of them help?
by chulett
Wed Dec 08, 2010 8:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Invalid date conversion
Replies: 3
Views: 1376

This sounds like a 'century pivot' issue but that shouldn't be an issue with 4 digit years, only 2 digits years where it has to determine the century. :? Just for grins, does anything change if you tweak your code like so: ereplace(Oconv(Iconv(ClmHdr.BIRTH_DT, "D-DMY[2,A3,4]"), "D-YMD...