Search found 53125 matches

by ray.wurlod
Mon Jul 03, 2006 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Command Stage gives 0 as output
Replies: 8
Views: 2714

Should there be an END to correspond with the BEGIN in your awk script?
by ray.wurlod
Mon Jul 03, 2006 3:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Siebel EIM component (export) losing column definitions?!
Replies: 1
Views: 792

Welcome aboard. :D I assume that you are performing Import > Table Definition > Sequential File It is known and documented behaviour of this dialog that, when you switch back to the Format tab, any definitions you may have created on the Define tab are discarded. After all, if you change the delimit...
by ray.wurlod
Mon Jul 03, 2006 3:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal values Getting rounded
Replies: 10
Views: 3729

Is it really rounding into the Data Set, or is it merely that the data browser (View Data) that is doing the rounding? If you move the data from the Data Set into a table or text file, are the data complete?
by ray.wurlod
Mon Jul 03, 2006 3:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reading 4 rows as one
Replies: 5
Views: 1617

... or use a constraint such as Mod(@OUTROWNUM,4) = 0 on the output link of a Transformer stage, accumulating the four values in stage variables.
by ray.wurlod
Mon Jul 03, 2006 3:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Routine
Replies: 6
Views: 3315

Programming Tip Whenever you use malloc(), use free() when finished with that memory. If you call this routine one million times, you end up allocating 20MB of memory. This is known as a "memory leak". You need to test this using a test bed (main() program) and debugger. Is this usage of malloc() -...
by ray.wurlod
Mon Jul 03, 2006 6:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic email body & send with Notification Activity
Replies: 9
Views: 8860

Not to the body. You could use a script to redirect stdin from that file. Or you could use a fixed body that says "see attachment".
by ray.wurlod
Mon Jul 03, 2006 6:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Login on personnel desktop
Replies: 6
Views: 971

You may find that your network card needs to be active. Even being connected to a wireless network will suffice.
by ray.wurlod
Mon Jul 03, 2006 6:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Pass parameters in UserVariables activity stage
Replies: 2
Views: 1411

Create a job to load them into a hashed file then use UtilityHashLookup as the derivation expression for each (needs version 7.5 or later).
by ray.wurlod
Mon Jul 03, 2006 6:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic email body & send with Notification Activity
Replies: 9
Views: 8860

Not without a routine somewhere in there, to build and send the email. The Notification Activity can not take an expression as the message body (though attachments are supported in version 7.5, so you could have the job produce the attachment file).
by ray.wurlod
Mon Jul 03, 2006 6:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unable to use job after abort
Replies: 6
Views: 3496

Search the forum for SPINTRIES and SPINSLEEP. These are configuration parameters that affect mutex locks' operation.
by ray.wurlod
Mon Jul 03, 2006 6:13 am
Forum: Information Analyzer (formerly ProfileStage)
Topic: Profilestage Capacity
Replies: 1
Views: 2367

Welcome aboard. :D How long is a piece of string? The answer to your question is that it is, more than anything, a function of the resources available on the server where ProfileStage is running. For example, with four CPUs and 16GB of memory you will be able to run far more than with one CPU and 2G...
by ray.wurlod
Mon Jul 03, 2006 12:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: telenting
Replies: 5
Views: 1512

You can execute any command after connecting via DataStage telnet. Simply use the DOS command in DataStage. Either DOS /C "command" to execute the command then return, or DOS alone to open an interactive DOS shell (use the exit command to return to DataStage).
by ray.wurlod
Mon Jul 03, 2006 12:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: comparing a column of current row with column of previus row
Replies: 4
Views: 1474

If you're going to use stage variables for the comparison, then stage variables for the accumulators is probably easiest to implement.
by ray.wurlod
Mon Jul 03, 2006 12:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Upgrade from v7.0.1 to v7.5.2
Replies: 8
Views: 2234

No, the Windows-based server is 7.5x2. There is, separately, a version called 7.5.2 for UNIX servers. :?
by ray.wurlod
Sun Jul 02, 2006 9:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to kill a job when DsDirector Stop does not work
Replies: 10
Views: 4258

That's good if it's DataStage locks that are at fault, but not at all if it's database locks. :cry:

Database locks need to be managed by other database utilities, such as DBA's know about. 8)