Search found 42189 matches

by chulett
Mon Jun 13, 2005 6:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC LOOK UP ERROR
Replies: 6
Views: 1172

Re: ODBC LOOK UP ERROR

But, I do not want to use the Hash file as tab1 is very big and there are very few input (say 50-60) compared to it. Is there really a need to load all of tab1 into the hash? As Ray noted, 3 lakhs is not all that big - however - you are correct in the fact that you don't need all of them in the has...
by chulett
Mon Jun 13, 2005 5:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job names in the folder??
Replies: 5
Views: 2573

Here are a couple of different ways. Not sure you can from dsjob, however.
by chulett
Sun Jun 12, 2005 6:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java PACK
Replies: 11
Views: 5415

You may also find that this is a Server only pack and not really applicable to Parallel jobs, with the only problem being the fact that it is letting you try to put the stages on the Parallel canvas. I tried poking around on Ascential's site, but couldn't find anything definitive one way or another....
by chulett
Sun Jun 12, 2005 6:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unix Servers
Replies: 2
Views: 810

Not really a DataStage topic. A quick Google should turn up all kinds of things on Samba, including the home page. Here's a small quote from the What the Heck is Samba? page: Samba is software that can be run on a platform other than Microsoft Windows, for example, UNIX, Linux, IBM System 390, OpenV...
by chulett
Sat Jun 11, 2005 7:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: look up is failing
Replies: 11
Views: 2733

is it necessary to do trimming for both source and hashed file keys. You tell us, we can't see your data. You need to do whatever is necessary to ensure that the data matches across all keys - or, as you've found, the lookup will fail. If that means trimming any character strings used in key fields...
by chulett
Sat Jun 11, 2005 9:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: look up is failing
Replies: 11
Views: 2733

What might be the problem. Well, how about all the normal stuff... * Verify that the the keys you've chosen for the hash are appropriate * Verify that you are mapping the right input source fields to their matching hash keys * Verify there really is matching data between source and hash * Verify th...
by chulett
Sat Jun 11, 2005 7:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substrings() function availability in DS EE(PX) edition ?
Replies: 1
Views: 679

Yes. It's called, oddly enough, substring and is documented in the Modify Stage section of the Parallel Job Developer's Guide.
by chulett
Sat Jun 11, 2005 7:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Java PACK
Replies: 11
Views: 5415

Odd. No direct ideas, but curious about something... You keep saying 'I'. Does this mean it only happens to you and not to other team members on their client machines? If there's any indication that it might be certain machines, the first thing I'd try is reinstalling the Client software. Couldn't h...
by chulett
Sat Jun 11, 2005 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to initialize plug-in
Replies: 10
Views: 2240

And perhaps even read and write data to Oracle now.

Cool. 8)
by chulett
Fri Jun 10, 2005 4:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Change the Column after that particular row is processed
Replies: 3
Views: 1674

I'd probably write all of your functional keys from the source DB2 table to a flat file during the run, along with a 'P' or an 'E' based on the success or failure of your Oracle work. A second job could then take the file of keys, source those and perform updates on those records back in DB2 with th...
by chulett
Fri Jun 10, 2005 7:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need answer
Replies: 7
Views: 1917

Yah, I was considering answering the next batch of questions like this completely wrong, just to be a poopie head. If it was one of those Poopie Head Days, that is. :wink:
by chulett
Fri Jun 10, 2005 7:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sorting data using 'filter' command in Sequential file stage
Replies: 10
Views: 3937

:!: Keep in mind that the default sort is a string sort:

2 b 1000
3 c 20
4 d 230
1 a 500

You have to either use the -n option to get a numeric sort or right justify any number field you are sorting on and pad them with zeroes.
by chulett
Fri Jun 10, 2005 6:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sorting data using 'filter' command in Sequential file stage
Replies: 10
Views: 3937

Make it work from the UNIX command line first and then it should transfer into the Filter and work just fine there. Be aware however of a bug in the Filter stage where certain characters cause the command to be truncated from the point. In my case, use of quotes or a pipe will trigger the bug. One s...
by chulett
Fri Jun 10, 2005 6:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need some help in Migration of Jobs
Replies: 13
Views: 4545

I don't have this information off the top of my head, but there must be a field that related DS_JOBOBJECTS back to DS_JOBS. Let's make one up and call it JOBID. Include that in the query: SELECT OLETYPE,JOBID,COUNT(*) from DS_JOBOBJECTS GROUP BY OLETYPE,JOBID I'm sure someone here knows the ...