Search found 42189 matches

by chulett
Fri Mar 07, 2008 10:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strange problem with a PX Job
Replies: 7
Views: 1188

Here's the rub... it sounds like the original job is the one that went south.
by chulett
Fri Mar 07, 2008 7:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Strange problem with a PX Job
Replies: 7
Views: 1188

So... you took PX job A and tried to save it as PX job B but couldn't for some unknown reason. When you were able to check again, PX job A is now an empty Server job? :?
by chulett
Fri Mar 07, 2008 5:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: decode issue in convert.
Replies: 9
Views: 2023

Ah yes, Locate. Exact match without all the fuss. :wink:
by chulett
Fri Mar 07, 2008 4:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: decode issue in convert.
Replies: 9
Views: 2023

Put something around each occurance in the list to check againts and then do the same for the value you need to check so they become unique, like single quotes. For example: If (Index(Convert(",",@FM,"'CALA','LTRA','OOARCAL','OOARLTR','OOAY'"), "'":dedup...
by chulett
Fri Mar 07, 2008 3:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: decode issue in convert.
Replies: 9
Views: 2023

Yes, exactly. Edited my response to make that more obvious. :wink:
by chulett
Fri Mar 07, 2008 3:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: decode issue in convert.
Replies: 9
Views: 2023

Because the Index function finds 'CAL' in 'CALA' and 'LTR' in 'LTRA'.
by chulett
Fri Mar 07, 2008 10:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can we extract VSAM file on Mainframe through datastage
Replies: 2
Views: 1208

No. Without having the mainframe '390' version of DataStage, the assumption is that you will arrange to have the data extracted from the mainframe system and tranferred to the DataStage server. Once there, the CFF stage can then be used to read it.
by chulett
Fri Mar 07, 2008 10:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pivot
Replies: 9
Views: 1717

No worries... and by now I think we all expect a Perl solution from you at times like this. :wink:
by chulett
Fri Mar 07, 2008 9:59 am
Forum: General
Topic: UTF8
Replies: 4
Views: 2276

Re: UTF8

PhilHibbs wrote:Additional info: or should that be, WTF8?

Sorry, just noticed this and had to laugh. :lol:

Whew, better now.
by chulett
Fri Mar 07, 2008 9:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pivot
Replies: 9
Views: 1717

Well... it's in there with all of the other DataStage pdf 'Docs' on your PC where you installed the client. Take a peek! :wink:
by chulett
Fri Mar 07, 2008 8:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Webservices
Replies: 2
Views: 1312

A slightly different assumption and answer: the same as they would have in any other environment and/or tool.
by chulett
Fri Mar 07, 2008 8:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Converting "value IN (1,2,3,4,5,6,7) from Oracle to tra
Replies: 8
Views: 2837

I haven't seen any such assumption about people's understanding, if anything it's usually the other way around. I for one will click on a user's name to see how they have ranked their own knowledge of the product and use that to craft an answer. No guarantees if someone has been overly generous in t...
by chulett
Fri Mar 07, 2008 7:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence job in loop getting aborted
Replies: 12
Views: 3224

What kind of help do you need? Like most things, there are many ways to skin this cat. One such... 1. Pass in a full ISO timestamp 2. Use the TimeDate() function to get the current date/time 3. Reassemble the output in ISO format 4. Directly compare the two strings Or use whatever functions tickles ...
by chulett
Fri Mar 07, 2008 7:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Better Performance
Replies: 4
Views: 2083

union all is more performant than UNION because a UNION is a distinct. Specifically, a UNION ALL simply returns the results of all queries. A UNION must first get the results of all queries and then so a 'SORT DISTINCT' on the results, so it obviously will take longer and more processing resources....
by chulett
Fri Mar 07, 2008 7:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in Start Loop Activity
Replies: 7
Views: 2647

Time to mark this post as Resolved then!