Search found 53125 matches

by ray.wurlod
Thu Oct 09, 2008 7:45 pm
Forum: General
Topic: Entry Criteria For Datastage Consultants
Replies: 7
Views: 2205

... and documenting them clearly, concisely and grammatically (in short, professionally) to ease the learning curve for those following, particularly in the case of those "deviations" mentioned earlier and in other cases where the "law of least astonishment" needs to apply. The ability to create a s...
by ray.wurlod
Thu Oct 09, 2008 2:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restore purge settings
Replies: 10
Views: 2582

OK, so put the control record //PURGE.SETTING into the job log.
by ray.wurlod
Thu Oct 09, 2008 2:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid Julian day
Replies: 7
Views: 4493

So you have severely castigated the provider of the data? Such feedback is vital in improving data quality.
by ray.wurlod
Thu Oct 09, 2008 2:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_THIN_SCORE
Replies: 3
Views: 1002

It's one of those that, if you want to use it you have to add it. On that basis you can conclude that its default value is $UNSET.
by ray.wurlod
Thu Oct 09, 2008 2:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Eliminate NLS warning msg ??
Replies: 4
Views: 2872

You could just set NLS_LANG to an appropriate value. (This is the environment variable used by Oracle, for example.)

Or you could try using the NONE pseudo-map in DataStage.
by ray.wurlod
Thu Oct 09, 2008 2:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup FILESET Configuration
Replies: 2
Views: 997

File Set or Lookup File Set? They are different beasts. How big is the reference data set (number of rows and estimated/calculated row size)?

What else is the job doing? Any sorting or aggregating?
by ray.wurlod
Thu Oct 09, 2008 2:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: improve performance of OCI stage
Replies: 13
Views: 3748

And stop thinking that row/sec is a meaningful metric of "performance" in ETL. It isn't.
by ray.wurlod
Thu Oct 09, 2008 2:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help in setting Null value..
Replies: 9
Views: 3881

@NULL remains the correct way to generate null. Perhaps your database converts null to "" on loading. Check with your DBA. What stage type are you using to effect the load?
by ray.wurlod
Thu Oct 09, 2008 4:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with date...
Replies: 3
Views: 1525

There are myriad conversion functions, such as StringToDate(). Research them and choose an appropriate one.
by ray.wurlod
Thu Oct 09, 2008 4:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage Equivalent of the SIGN Function in Oracle
Replies: 2
Views: 1601

Welcome aboard. Try what Oracle does under the covers. If InLink.TheNumber = 0 Then 0 Else InLink.TheNumber / Abs(InLink.TheNumber) or, if you prefer, try this. If InLink.TheNumber = 0 Then 0 Else If InLink.TheNumber > 0 Then 1 Else -1 I'm surprised you could not work that out for yourself.
by ray.wurlod
Thu Oct 09, 2008 4:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Running & error handling of Parallel Job from Server Rou
Replies: 1
Views: 1087

$INCLUDE DSINCLUDE JOBCONTROL.H ErrMsg = "" RoutineName = "MyRoutine" hJob = DSAttachJob(TheJobName, DSJ.ERRNONE) JobName = DSGetJobInfo(hJob, DSJ.JOBNAME) If JobName Matches "'-'1N0N" Then ErrMsg = "Could not attach job." End Else * Optionall...
by ray.wurlod
Wed Oct 08, 2008 11:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can User Variable Activity be Checkpointed?
Replies: 2
Views: 1195

You just have to look at the abysmal way the GUI was written to answer that. How many other grids have you ever encountered with zero rows and you have to right click to create a row before you can use the grid?
:roll:
Sheesh
by ray.wurlod
Wed Oct 08, 2008 7:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restore purge settings
Replies: 10
Views: 2582

You only need to put non-default ones back.
by ray.wurlod
Wed Oct 08, 2008 6:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Restore purge settings
Replies: 10
Views: 2582

You don't need to anything. If you want the same settings as project default to be in place, just run the job again - the absence of control records will be understood to mean (a) that you want the log to be purged using default settings and (b) that you want the control records to be created. This ...
by ray.wurlod
Wed Oct 08, 2008 6:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Use of 'Not' Condition
Replies: 10
Views: 2073

You have two dots, I have one. Choose "Link Variables" from the operand menu in the expression editor, choose "Inputs..." from the next menu that is presented, and choose the NOTFOUND link variable for the reference input link from the list that is then presented.