Search found 53125 matches

by ray.wurlod
Thu Jan 17, 2008 5:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to change the evnironmental variable
Replies: 12
Views: 3644

If you want to change the value when you request a job run, add the environment variable to the job as a job parameter. Set the default value of the job parameter to be $PROJDEF or $ENV. The first will pick up the value from whatever has been set in Administrator, the second will pick up the value f...
by ray.wurlod
Thu Jan 17, 2008 5:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generating multiple rows based on the data of 2 input column
Replies: 12
Views: 4289

I read that as Santosh admitting that Santosh's way is not an excellent way, merely offered as an alternative.
by ray.wurlod
Thu Jan 17, 2008 5:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: log files
Replies: 16
Views: 5961

Columns for DataStage log tables are: @ID INTEGER displayed 10 characters wide with leading zeroes TYPE TINYINT encoded severity value WAVE.NO INTEGER internal uniqueness number used by DataStage FULL.TEXT VARCHAR text of the log event SEVERITY VARCHAR decoded severity value e.g. "Info", &...
by ray.wurlod
Wed Jan 16, 2008 5:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to make operations on date fields
Replies: 1
Views: 744

In Appendix A of the Parallel Job Developers Guide is a list of all the Transformer stage functions. My first guess would be to use DaysSinceFromDate(). In a Modify stage this function is called days_since_from_date() My second guess would be to apply JulianDayFromDate() to both dates and subtract. ...
by ray.wurlod
Wed Jan 16, 2008 5:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help to find training cources by DataStage EE v8.x
Replies: 10
Views: 3439

OK, I'll take your word for it. The most recent advanced class I've seen is for version 7.5 (course code DX436). And there's nothing newer mentioned in IBM's Course Catalog for Jan-Jun 2008. There is, however, an essentials class for version 8 (course code DX444). Based on IBM's course coding conven...
by ray.wurlod
Wed Jan 16, 2008 5:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Generation of jobs Report.
Replies: 1
Views: 663

Sounds like a reasonable request to me, but you may not need to. Open Director then, from the View menu, disable the display of Categories. Click on the Last Ran column heading to sort by last run date. I think that's what you're after - no need for Excel at all. From the Project menu you can choose...
by ray.wurlod
Wed Jan 16, 2008 5:29 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Status = 3 (Abort)
Replies: 11
Views: 2121

Please verify that "automatically handle activities that fail" is checked and, when it is, re-compile just to make sure. Let us know (I'm sure you will).
by ray.wurlod
Wed Jan 16, 2008 5:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fabs function on data
Replies: 16
Views: 4774

The full answer to that involves a deep technical understanding of the IEEE standard that describes storage in a specific-sized binary structure of floating point numbers.

The non-technical answer is "because that's how it is".
by ray.wurlod
Wed Jan 16, 2008 2:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Status = 3 (Abort)
Replies: 11
Views: 2121

Job1 needs an OK trigger or a Custom trigger, one that does not handle Failure (an Unconditional trigger does "handle" failure). When Job1 aborts, the Exception Handler should fire, provided that the "automatically handle activities that fail" check box in job properties is checked.
by ray.wurlod
Wed Jan 16, 2008 2:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fabs function on data
Replies: 16
Views: 4774

The result of Fabs() is a dfloat. Floating point numbers can not be represented accurately in computers. That is an artifact of they way they are stored: not of anything in DataStage.
by ray.wurlod
Wed Jan 16, 2008 2:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HELP ME - Internal error
Replies: 9
Views: 2359

Please try to choose more meaningful subject lines. The error is being generated when DataStage is checking the licensing (the "APT_LicenseOperator" in the error message). Either your licence is not valid or you have not made the PXEngine components visible/accessible on all nodes in your configura...
by ray.wurlod
Wed Jan 16, 2008 2:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Help to find training cources by DataStage EE v8.x
Replies: 10
Views: 3439

IBM has a version 8 class for essentials, and will be releasing an advanced class sometime soon. I have no information about whether or not they are planning an administration class - contact IBM Learning Services. That said, the version 7.5 classes for advanced and administration have a high degree...
by ray.wurlod
Wed Jan 16, 2008 1:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: remove the zeros from the left of a decimal field
Replies: 5
Views: 2450

Fabs() function

No, it's a server job function (DataStage BASIC). It can be used in the BASIC Transformer stage in parallel jobs. In parallel jobs use the Abs() function, which returns a dfloat result, to remove the sign from a number. To remove leading zeroes the target field must be a string of some kind, and you...
by ray.wurlod
Wed Jan 16, 2008 1:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trim the data
Replies: 5
Views: 1414

What are the "leading characters" that you want to trim? What syntax of the Trim() function you are using? TrimB() trims trailing white space characters, not leading - you need TrimF() for leading white space. Do your data in fact have leading white space? Further, if you have 45 non-white-space cha...
by ray.wurlod
Wed Jan 16, 2008 1:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to View Data from Informix CLI Stage
Replies: 12
Views: 6463

Have they created the entire Data Warehouse database without transaction logging?

If not, you only need to create transaction logging on the table; it was the table that had a WITH NO LOG in its CREATE TABLE statement.