Search found 53125 matches

by ray.wurlod
Tue Oct 26, 2004 3:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is Lookup possible irrespective of matching key?
Replies: 3
Views: 983

Simple logic tells you that you need two passes through the data. You can not know (sum of all costs) without one pass through the data. Load these totals into a hashed file keyed by whatever it is you're grouping (categorising) by, then calculate the percentages in a second pass. Or you could load ...
by ray.wurlod
Tue Oct 26, 2004 3:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: rolling forward of date
Replies: 5
Views: 1043

Presumably you have a time dimension table in your DW. You can roll forward until the desired attribute (as retrieved from that table) changes value.
by ray.wurlod
Tue Oct 26, 2004 3:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Previous Record Values
Replies: 4
Views: 1825

You need to be totally sure that any initial value that you assign to a stage variable will never, ever appear in data. Including @INROWNUM <> 1 is a mechanism that I call "idiot proofing".
by ray.wurlod
Tue Oct 26, 2004 3:45 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dataset vs Sequential file
Replies: 8
Views: 4161

The default in a Sequential File stage is to report a zero-length string ("")as NULL. You can override this behaviour in the properties. Null field value property in parallel, NULL value property in server.
by ray.wurlod
Tue Oct 26, 2004 2:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rotating File Pool
Replies: 0
Views: 809

Rotating File Pool

I recently rediscovered a post about MFILES and the rotating file pool, written by Dave Meeks (now at Ascential Engineering) in 2002 on a forum for UniVerse. I reproduce that post here because it's useful information. For UV read DataStage; the arguments still hold. >We recently had a situation wher...
by ray.wurlod
Tue Oct 26, 2004 1:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: hashed file cache sharing
Replies: 5
Views: 5158

Yes and no. Chapter 2 of the Parallel Job Developer's Guide will aid your understanding, even though you're using server jobs. It's about process boundaries. 1. A passive stage between two active stages is a process boundary. 2. An IPC stage is, ipso facto, a process boundary. 3. The invisible passi...
by ray.wurlod
Tue Oct 26, 2004 1:29 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Target Load issue
Replies: 2
Views: 968

There is no Join stage in server jobs. From your description I believe you have a constraint expression in your Transformer stage that is only allowing rows to be output where the lookup succeeded. Another possibility is that you are delivering NULL to a column that is defined as NOT NULL in the tar...
by ray.wurlod
Tue Oct 26, 2004 1:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Conversion from DB2 to Oracle
Replies: 1
Views: 715

Welcome aboard! :D DataStage is entirely driven by the metadata. Therefore, unless your tables are similarly - preferably identically - defined, there's no much option in DataStage than to create many different jobs. Create a template from a job that moves a generic table, and optionally make its na...
by ray.wurlod
Mon Oct 25, 2004 8:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_ipcopen() - Error
Replies: 5
Views: 2019

Then I can only surmise that there's something awry with the ds_ipcopen() space checking algorithm. Have you had any feedback from your support provider?
by ray.wurlod
Mon Oct 25, 2004 8:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Info for a migration
Replies: 5
Views: 1083

As Siva suggested, forward compatibility is not a problem. The process of updating without uninstalling automatically updates all objects in all projects. (You don't get a choice on this.) However, you can't go back, so make sure you've got a verified backup, and an export of the project, and an ext...
by ray.wurlod
Mon Oct 25, 2004 8:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Previous Record Values
Replies: 4
Views: 1825

You can use a pair of stage variables, and rely on the fact that stage variables are processed in the order in which they are defined in their grid. Techniques have been posted before, search them out. Quick example: svIsChanged If (InLink.ColName<> svPrevValue) Then 1 Else 0 svPrevValue InL...
by ray.wurlod
Mon Oct 25, 2004 8:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bugs for Version 6.0.1
Replies: 3
Views: 1088

There's nothing I know of to prevent this problem from occurring.

It seems to be minimal if you don't have any other Windows applications open when using DataStage clients. But this is not always possible.
by ray.wurlod
Mon Oct 25, 2004 4:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error log
Replies: 2
Views: 608

Search the Forum for column definitions for RT_LOG, for example here
by ray.wurlod
Mon Oct 25, 2004 4:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Bugs for Version 6.0.1
Replies: 3
Views: 1088

OLE (object linking and embedding) is a Microsoft Windows technology. DataStage clients make use of OLE; they use objects exposed by dsobjects.dll (this has different names on earlier releases), which is usually the "OLE server" in question. Basically this message means that something has occurred i...
by ray.wurlod
Mon Oct 25, 2004 4:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Config - dev test prod same machine?
Replies: 2
Views: 664

While you can have multiple projects on the same machine, it's always a compromise to do so, which is why separate machines are to be performed. For example, in development it's possible to get into situations where the machine (or the DataStage Engine) needs to be re-started. Having production on t...