Search found 10 matches

by evandal
Thu Mar 06, 2014 11:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Buildop C++
Replies: 9
Views: 7476

Hi, Thanks for the quick reply. The link doesn't work but I assume it is this one http://www-01.ibm.com/support/knowledgecenter/SSZJPZ_8.7.0/com.ibm.swg.im.iis.ds.pxop.dev.doc/topics/odg_descriptions_of_messaging_macros.html All that says is: The final argument is logOrSourceModule : the object to w...
by evandal
Thu Mar 06, 2014 10:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Buildop C++
Replies: 9
Views: 7476

Re: Buildop C++

APT_MSG(MessageSeverity, englishString, args, logOrSourceModule) For "logOrSourceModule", what is the possible value ? Hi, I know this is an old thread, but I can't find any documentation on what "logOrSourceModule" should be. If I set it to APT_LogWarningId (generated by the bu...
by evandal
Tue Feb 18, 2014 2:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to throw a warning in PX job
Replies: 2
Views: 2044

Yah, I was trying to avoid having to to create an external object. It's one more thing to maintain and promote through the environments. Any other ideas?
by evandal
Tue Feb 18, 2014 1:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to throw a warning in PX job
Replies: 2
Views: 2044

How to throw a warning in PX job

Hi, does anyone have an easy way to throw a warning into the job log from a PX job? For server I used to have a routine that would do a "Call DSLogWarn(MessageString, RoutineName)". Basically, I just need to be able to pass a string inside a transformer or some other stage and have it show...
by evandal
Wed Sep 18, 2013 6:48 am
Forum: IBM QualityStage
Topic: Convert multiple tokens in standardization
Replies: 5
Views: 5882

First, I am a bit confused. You say that "123 YOUNG DRIVE WEST NW" generates a ^+DDD. I would expect (depending on the rule set) that 'DRIVE' would be a T, so the pattern would be ^+TDD. . Yes, sorry that one is a typo. It does give me ^+TDD. As for the result I expect, I need to have a s...
by evandal
Tue Sep 17, 2013 10:09 am
Forum: IBM QualityStage
Topic: Convert multiple tokens in standardization
Replies: 5
Views: 5882

Sorry, I meant to say "Problem with this is that ? handles only unclassified words. ".

So I need a class that can match multiple words, classified or not.
by evandal
Tue Sep 17, 2013 9:12 am
Forum: IBM QualityStage
Topic: Convert multiple tokens in standardization
Replies: 5
Views: 5882

Convert multiple tokens in standardization

Hi, I'm trying to convert a string of multiple tokens to a new class. I have tried lookups and conversion but neither is really doing what I need. I'm looking for some suggestions on how to proceed. I can't create a rule for each case becasue there are thousands, and in some cases, thes rules would ...
by evandal
Tue Nov 20, 2012 1:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter in SQL results in incorrect substitutions
Replies: 6
Views: 4310

\%\P doesn't get replaced by "Datastage" ... but it also doesn't work in a like statement. So like '\%\PERIODONTAL%' returns no rows.
by evandal
Tue Nov 20, 2012 12:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter in SQL results in incorrect substitutions
Replies: 6
Views: 4310

Can you replace the "%" with "\%" to see if that makes a difference? ... Same problem. I get and upper(a.acct_name) not like '\DataStageERIODONTAL%' I also tried CHR(37)||'PERIODONTAL%' and that seems to work but it's a messed up way to write SQL if I have to change every where ...
by evandal
Tue Nov 20, 2012 11:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parameter in SQL results in incorrect substitutions
Replies: 6
Views: 4310

Parameter in SQL results in incorrect substitutions

Hi, I have this SQL with a parameter in the where clause. The result of the parameter works but the resulting SQL is messed up. For some reason every %P gets replaced by "Datastage" at run time. I tried adding APT_OSL_PARAM_ESC_SQUOTE but no change. Here is the original SQL: select A.kcm_A...