Search found 42189 matches

by chulett
Tue May 11, 2004 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Termination
Replies: 2
Views: 1022

What happens when you Reset the job via the Director? Do any 'extra' messages labelled something like 'From previous run' get pulled into the log? I was having something similar happen and the reset showed the job was actually core dumping due to some funky SQL in an OCI stage.
by chulett
Tue May 11, 2004 8:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Transformer problem
Replies: 6
Views: 1831

The advantages are pretty well spelled out in the documentation, primarily the Server Job Developers Guide. Performance. Between the use of Row Buffering or IPC Stages, performance gains can be substantial, especially on multi-processor systems. As to the "why"... it just seems to be a bug. I've see...
by chulett
Tue May 11, 2004 6:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: transactional grouping feature
Replies: 5
Views: 1652

Ah... the old "It's for your own good, Dear" ploy. :wink:
by chulett
Mon May 10, 2004 6:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bind variables for oracle select
Replies: 1
Views: 1012

Sure, just simply... use the Job Parameter in the SQL! From either Column Generated or User Defined SQL, use the parameter like you would (almost) anywhere else - enclosed in pound signs. To extend your example: select emp_no from emp where dept = #DEPT# I've found that you need to enclose things in...
by chulett
Mon May 10, 2004 3:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Syntax error help
Replies: 2
Views: 894

Derivations in Transformers are expressions, not assignments. See Ray's post at the end of this thread for an example. You'll need to write a routine to do what you are trying to do.
by chulett
Mon May 10, 2004 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Transformer problem
Replies: 6
Views: 1831

Yes, there is. It is set via the Administrator: Project -> Properties -> Tunables.
by chulett
Mon May 10, 2004 2:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple Transformer problem
Replies: 6
Views: 1831

Do you have Row Buffering enabled? If so, try your job with it turned off and see if that solves it.
by chulett
Mon May 10, 2004 2:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Support for 64 bit processing on Windows
Replies: 4
Views: 1484

Hmmm... I don't think DataStage is supported on Windows 2003. :?
by chulett
Mon May 10, 2004 1:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to get the smallest number
Replies: 4
Views: 1446

You could also do this with a hash if that's the way you want to go. Create one with a fixed key so it only has one record - like a "1" - and a data field to hold your number. Setup your job to do the lookup from and also write to this hash file. On each row, compute the number, do the lookup and co...
by chulett
Mon May 10, 2004 1:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bit test from VSAM file
Replies: 2
Views: 930

David, check your online help Index for "Bit functions". There is a whole series of functions you can use - BitAnd, BitOr, BitXor, etc. I would think you'll find what you need there.
by chulett
Mon May 10, 2004 8:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: transactional grouping feature
Replies: 5
Views: 1652

Well, then you can't group them. :cry: For whatever reason, that is the rules of the game here.
by chulett
Mon May 10, 2004 7:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: transactional grouping feature
Replies: 5
Views: 1652

They all have to come from the same Transformer. Is that the case?
by chulett
Sat May 08, 2004 9:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Join Tables
Replies: 2
Views: 928

Welcome. The ODBC stage is your only choice, as far as I know. Search on that keyword in this forum for many examples of how to configure your connectivity if you need help with that. Any of the passive plugin stages for database access should allow joins to be performed. You typically have a choice...
by chulett
Fri May 07, 2004 8:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatinating the String with NULL
Replies: 2
Views: 1147

Re: Concatinating the String with NULL

Is there a way to concat the string with a null value. No. Null is the unknown value, so adding null into any mix results in null as the output. You need to either explictly convert the nulls to something else or account for them in some if-then-else logic. Check out the Built-In Transform NullToEm...
by chulett
Wed May 05, 2004 9:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem in getting data from Oracle to DS : Too Slow
Replies: 15
Views: 4024

Dig out your Client cdrom and look for a directory called something like "Unsupported Utilities". :? In there, you'll find the HFC - the Hashed File Calculator tool. Use it to find the ideal creation statement for your hash file based on # records, key types, etc etc.