Search found 42189 matches

by chulett
Thu Jul 10, 2008 10:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using one user defined env. variable to override another
Replies: 20
Views: 7874

It is possible to use a before job subroutine which can pickup values from a file and assign them to a job parameter. Unfortunately no, as at that point it is 'too late' - the parameter values have already been assigned. It would have to be truly before, in a separate step, to try something like th...
by chulett
Thu Jul 10, 2008 9:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User status disappear
Replies: 3
Views: 2037

Don't recall exactly, somewhere in the "RT" job hashed files. The answer is out in the forums, I do believe, so a search may turn it up.
by chulett
Thu Jul 10, 2008 9:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Hashed File Limitiations
Replies: 4
Views: 1463

Search the forums for 64BIT_FILES, the concerns with that approach have been mentioned here several times. Basically, the concern is that ALL hashed files will be created as 64bit going forward, every single one everywhere from what I understand.
by chulett
Thu Jul 10, 2008 9:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: IsNULL function in Lookup Columns
Replies: 5
Views: 1414

What are you trying to accomplish with this constraint? If it is simply to check the success/failure of the lookup, that should work but the 'more proper' solution would be the NOTFOUND link variable.
by chulett
Thu Jul 10, 2008 8:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unit of work for Mainframe DB2
Replies: 1
Views: 989

The short answer is no, especially (and emphatically) for the 'series of jobs' question. The slightly less shorter answer is yes (in a single job) if you can manage to do all of your work in a single target database stage. It is still controlled at the individual link level but everything would be a...
by chulett
Thu Jul 10, 2008 8:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using one user defined env. variable to override another
Replies: 20
Views: 7874

Ahhh... the gauntlet has been thrown. :wink:
by chulett
Thu Jul 10, 2008 8:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using one user defined env. variable to override another
Replies: 20
Views: 7874

I believe all that is understood by the OP, but they seem to be looking for some way to not need to add/override the value in every job that needs it. Is that correct?
by chulett
Thu Jul 10, 2008 8:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using one user defined env. variable to override another
Replies: 20
Views: 7874

Hmmm... I don't believe there is any way for an environment variable to have its default value set to another environment variable. Be happy to be proven wrong, however.

Perhaps this is something that judicious use of Parameter Sets would help with? :? Don't ask me how, just wondering.
by chulett
Thu Jul 10, 2008 7:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem using Sql Load with Oracle Enterprise stage
Replies: 4
Views: 1566

xinhuang66 wrote:Is it possible that there are some process in the job itself cause the lock ?

Nope. It really is as simple as already posted. And the rules for a direct path versus a conventional load are different.
by chulett
Thu Jul 10, 2008 7:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reading the data file
Replies: 7
Views: 1554

Ah... Wurlod Humor. :lol:
by chulett
Thu Jul 10, 2008 7:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: A plethora of sshd processes
Replies: 7
Views: 3144

FNUXI. :wink:

So, is the belief that these are coming from the normal operation of DataStage and I'll need to monitor and nuke these on a regular basis? Or these are rogue interlopers that deserve nothing more than shooting first and asking questions later?
by chulett
Thu Jul 10, 2008 7:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Merge stage in server jobs
Replies: 6
Views: 3565

:lol: I guess in principal that I agree, seeing as how I never use it, prefering other mechanisms to 'join' or merge files.
by chulett
Thu Jul 10, 2008 7:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User status disappear
Replies: 3
Views: 2037

:? That smells odd enough it's probably a bug. Open a case with your official Support provider and let us know what you find out.
by chulett
Wed Jul 09, 2008 10:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Incremental Loading
Replies: 7
Views: 1647

About the only real 'gotcha' I can think of off the top of my head is the need to use a field separator when cat'ing everything together for the CRC32 function. A silly example that should easily make the point: Two fields to check, Field1 has a value of "123" and Field2 has a value of "456". Cat'd ...
by chulett
Wed Jul 09, 2008 7:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Incremental Loading
Replies: 7
Views: 1647

CRC32 works well for that. Unless you have a very small number of columns to compare, it's relatively painless to hash up the CRC value for all the fields in the existing rows and compare that to what comes in from your source. A miss in the lookup = new, while a hit where the CRC value is different...