Search found 42189 matches

by chulett
Mon Jun 06, 2011 6:15 am
Forum: General
Topic: datastage job not getting called through batch file
Replies: 11
Views: 5247

My Computer / Properties... you'll find an Environment Variables setting there, under the Advanced tab I do believe. Update it there.

(confirmed)
by chulett
Mon Jun 06, 2011 6:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IN operator in DATASTAGE
Replies: 8
Views: 7079

No "looping" required nor does the size of the list matter. The "trick" to preventing substring matches has been posted here many times: include the delimiter in the search. So, search for ",1," rather than "1". Which also means you'll need to wrap your parame...
by chulett
Mon Jun 06, 2011 5:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IN operator in DATASTAGE
Replies: 8
Views: 7079

There's always the Index() function.
by chulett
Mon Jun 06, 2011 5:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle stored procedure
Replies: 3
Views: 1164

Yes. And the "how" of that is documented.
by chulett
Mon Jun 06, 2011 5:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage job error
Replies: 12
Views: 3619

Right, reject links always post a warning when the number of rows that go down it is non-zero. If your job aborted because of that, you must be running it with a warning limit of 1.
by chulett
Mon Jun 06, 2011 5:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Identifying records with special characters
Replies: 9
Views: 2612

pandeesh wrote:If i want to consider space also as a special character, i can include another condition with this:
Why? Did you not notice the space that is included in the first list of characters I posted? I even put it between the letters and numbers to make it more obvious for you. :?
by chulett
Mon Jun 06, 2011 5:36 am
Forum: General
Topic: Exporting PROJECT in XML format
Replies: 14
Views: 4897

Sounds like you need a new requirement.
by chulett
Sun Jun 05, 2011 9:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Addr family not supported by proto family
Replies: 3
Views: 1548

Time to involve support, it would seem.
by chulett
Sun Jun 05, 2011 7:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Addr family not supported by proto family
Replies: 3
Views: 1548

What flavor of Windows, a supported one? The only other post here that mentions your error only had the problem in Vista.
by chulett
Sun Jun 05, 2011 12:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Identifying records with special characters
Replies: 9
Views: 2612

Why not simply test it yourself rather than ask me? A simple routine would allow multiple values to be tested quite easily and then you can decide if it solves your problem or not.
by chulett
Sun Jun 05, 2011 12:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Identifying records with special characters
Replies: 9
Views: 2612

You can use the Convert() function:

Code: Select all

Convert("ABCDEFGHIJKLMNOPQRSTUVWXZY 0123456789","",Upcase(YourColumn))
If the result of that is not an empty string, it has at least one of your "special" characters in it.
by chulett
Sat Jun 04, 2011 11:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Identifying records with special characters
Replies: 9
Views: 2612

What are you considering a "special" character here?

I changed your post's subject to something more meaningful than the original of "job logic". Please try to make them more appropriate in the future.
by chulett
Sat Jun 04, 2011 11:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: data insert issue
Replies: 4
Views: 1809

Just so you know, posting in all caps is considered SHOUTING. Please don't shout.
by chulett
Sat Jun 04, 2011 8:30 am
Forum: General
Topic: Infosphere Datastage 8.5 Scheduler service.
Replies: 3
Views: 2155

Unless there's been a major addition to the 8.5 version, DataStage has always relied upon underlying schedulers - Windows 'at' or UNIX cron/at. The Director client is basically a GUI interface to them.
by chulett
Sat Jun 04, 2011 7:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: read multiple files using sequential file,
Replies: 2
Views: 2260

Which part is unclear? Always best to ask specific questions. First ensure you can read multiple files, have you tried using the File Pattern yet? Also there is an option in the stage to add the filename as a field, enable that. That way you can check the value in a transformer to decide how to popu...