Search found 3 matches

by bcpeck
Thu Mar 05, 2009 11:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is Surrogate Key Generator stage slow?
Replies: 5
Views: 3204

Has anyone tried increasing the sequence cache size? The default is 20, meaning that Oracle grabs 20 numbers at a time from the database. If accessing the sequence a lot, increasing the cache size to perhaps 10% of your average batch size should increase performance.
by bcpeck
Thu Jun 19, 2008 9:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Environment Variable
Replies: 2
Views: 1374

Use dsadmin -listenv

For example to get the value of the DataStage environment variable ProjBaseDir from project Fred:

BASE_DIR=`$DSBIN/dsadmin -listenv Fred | grep ProjBaseDir`

...assuming the DSBIN Unix environment variable points to the directory where dsadmin lives.
by bcpeck
Mon Jun 12, 2006 10:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Email as input
Replies: 2
Views: 1278

Email as input

I have a situation where data that I need to capture is already being sent via email to a number of recipients. The emails could easily have a new account added as a CC: address. The problem then is how to read the emails from the new account and land their text into sequential files for DataStage t...