Search found 42189 matches
- 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...
- Thu Jul 10, 2008 9:35 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: User status disappear
- Replies: 3
- Views: 2037
- 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
- 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
- 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...
- 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
- 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
- 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
- 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
- Thu Jul 10, 2008 7:51 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Reading the data file
- Replies: 7
- Views: 1554
- 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
- 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
- Thu Jul 10, 2008 7:43 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: User status disappear
- Replies: 3
- Views: 2037
- 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 ...
- 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...