For starters, delete the duplicate post before anyone responds to it.
How are you initially populating the lookup table?
What is "ar lookup"?
Can you load a local structure, such as a Lookup File Set, with the data from the reference table?
If not, why not?
Search found 53125 matches
- Fri Jan 18, 2008 5:55 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Belongs to look up
- Replies: 3
- Views: 1103
- Fri Jan 18, 2008 5:52 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Dynamically Setting Environment variables
- Replies: 6
- Views: 2532
The actual syntax will depend on which shell you are scripting for. Typically there's a statement that marks the end of the IF block. if [ $prj -eq 'dev' ] $path=/dev/pathname else $path=/tst/pathname fi Beware of using shell variable names that might be confused with environment variable names such...
- Fri Jan 18, 2008 5:48 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sort Stage Vs CPU utilization
- Replies: 1
- Views: 683
How long is a piece of string? Seriously yours is not a question that can be answered without knowing the results of resource monitoring on your machine. If you don't use a Sort stage or a link sort but a sort is required, then a tsort operator will be inserted when the score is composed. So you end...
- Fri Jan 18, 2008 5:43 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Reusability
- Replies: 3
- Views: 1117
- Fri Jan 18, 2008 5:40 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to use Transformer with a Schema file
- Replies: 5
- Views: 1598
- Fri Jan 18, 2008 5:39 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Schema file
- Replies: 4
- Views: 1458
- Fri Jan 18, 2008 5:38 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: acessing environment variable in scripts
- Replies: 5
- Views: 1157
- Fri Jan 18, 2008 5:36 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Segmentation Fault while attempting to connect to UV
- Replies: 3
- Views: 1228
What happens if you use bin/dssh rather than bin/uv ?
Do you pre-execute the dsenv script?
Do you pre-execute the dsenv script?
Code: Select all
cd $DSHOME
pwd # check that you are in the right directory, that DSHOME was set
. ${DSHOME}/dsenv
${DSHOME}/bin/uv- Fri Jan 18, 2008 5:34 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Calling Another Routine
- Replies: 3
- Views: 1318
- Fri Jan 18, 2008 5:32 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Universe read / write performance
- Replies: 4
- Views: 1517
Welcome aboard. Rows/sec is not a good metric of performance. Rows/sec changes over the life of the job, particularly if you are using write caching and Hashed File stage to write to the UniVerse table. Yes, it is possible to tune UniVerse tables, but it's a non-trivial topic; you really should atte...
- Fri Jan 18, 2008 5:27 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date conversion From flat file to Sql Server table
- Replies: 16
- Views: 5031
- Fri Jan 18, 2008 5:20 am
- Forum: General
- Topic: Access a Paralell routine
- Replies: 1
- Views: 1171
- Fri Jan 18, 2008 5:17 am
- Forum: IBM<sup>®</sup> DataStage TX
- Topic: auditstage SUM
- Replies: 1
- Views: 2189
- Thu Jan 17, 2008 10:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Converting YDDDHHMM to timstamp
- Replies: 2
- Views: 681
- Thu Jan 17, 2008 10:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date conversion From flat file to Sql Server table
- Replies: 16
- Views: 5031
There are routines/transforms in the SDK that you can use. Why re-invent the wheel? Ultimately, though, you need to re-organize the components of the date into yyyy-mm-dd format (guaranteeing 4, 2 and 2 digits) then add a time component. (Actually, I believe SQL Server is happy enough without the ti...