Search found 4992 matches

by kcbland
Thu Sep 30, 2004 2:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loading Hash File
Replies: 14
Views: 3217

32-bit addressable files have a 2.2 gigagbyte limit. DS Server by default uses 32-bit hash files. You can set DS to use 64-bit as the default, or, manually create hash files supplying the 64BIT keyword option. Search the forum, it's covered a lot.
by kcbland
Thu Sep 30, 2004 12:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error writing to RT_STATUS89
Replies: 3
Views: 693

Export the job and reimport. Somehow you corrupted the job status file.
by kcbland
Thu Sep 30, 2004 12:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple DataStage Server instances on one Machine
Replies: 11
Views: 2882

chulett wrote:Your teapot seems to be running at a rolling boil today, Ken. :lol:



Yes, :twisted: I'm on my annual fall diet and my tuna and rice lunch just doesn't compare to a chicken parmesan with fettucini alfredo and pasta fagioli lunch I like to enjoy.
by kcbland
Thu Sep 30, 2004 12:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple DataStage Server instances on one Machine
Replies: 11
Views: 2882

chulett wrote:
kcbland wrote:Technically yes, but, how are you going to attach to both instances from your PC client?

That wasn't the question asked. :wink:


:lol:


Okay, the question asked was akin to:

Can I put a screen door on a submarine?

And my reply was akin to:

Technically yes but you can't use it.
by kcbland
Thu Sep 30, 2004 12:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem accessing Oracle 9i stage in DS7.5
Replies: 7
Views: 1991

Have you configured the dsenv file?
by kcbland
Thu Sep 30, 2004 12:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple DataStage Server instances on one Machine
Replies: 11
Views: 2882

Starting witn 7.x it is possible to run simultaneous server instances. You need to manipulate the "id" associated with them... whatever it is called. You know, the thing that defaults to "ade". That and the port for the dsrcpd daemon. Technically yes, but, how are you going to attach to both instan...
by kcbland
Thu Sep 30, 2004 12:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Denormalizing Data
Replies: 7
Views: 2301

I'm talking about a DataStage Server job utilizing DataStage Server hash files. You are posting questions in the Server forum, so I'm giving you a Server solution.

If you want a Parallel solution, I'd tell you to a different solution.
by kcbland
Thu Sep 30, 2004 11:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Heap error
Replies: 4
Views: 1116

No, you can't copy the file.
by kcbland
Thu Sep 30, 2004 10:04 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple DataStage Server instances on one Machine
Replies: 11
Views: 2882

It is not possible for simultaneous server instances. You can toggle instances, which is difficult (to be kind) to manage.
by kcbland
Thu Sep 30, 2004 10:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Heap error
Replies: 4
Views: 1116

You ran out of disk space, and yes the job fails to blow up. Just kill it.
by kcbland
Thu Sep 30, 2004 10:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple DataStage Server instances on one Machine
Replies: 11
Views: 2882

It is not possible.
by kcbland
Thu Sep 30, 2004 9:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Denormalizing Data
Replies: 7
Views: 2301

Doing it in DataStage is ugly, that's why I gave you an "elegant" SQL solution. Write source table "A" into a hash file, leaving the B phone number column blank. Read source table "B" and reference the hash file, if the row is there, add the B phone number to the B phone number column and write out ...
by kcbland
Thu Sep 30, 2004 7:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Denormalizing Data
Replies: 7
Views: 2301

Your solution is not a loop, it is a UNION in your SQL. You need to collapse two rows into one. Imagine SQL like this: select key, max(bus_phone), max(home_phone) from ( select key, NULL "BUS_PHONE", home_phone from table A union all select key, bus_phone, NULL "HO...
by kcbland
Wed Sep 29, 2004 2:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSMigrate - Has Anyone heard about it ?
Replies: 10
Views: 4880

Well, Google seems to be a good search tool :wink:

DSMigrate doesn't look like it has anything to do with DataStage
by kcbland
Tue Sep 28, 2004 8:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bottleneck Advice
Replies: 4
Views: 1346

If you're on Solaris, use prstat -a and see if your job is using 100% of a cpu. If it is, then the only way to speed up that single job is to remove logic. Chances are if your job is seq-->xfm --> hash with a hash reference, your job is at 100% cpu speed unless you're disk thrashing. If you're not t...