Search found 53125 matches

by ray.wurlod
Tue Oct 27, 2009 5:34 pm
Forum: General
Topic: Staggered start in a sequence
Replies: 23
Views: 7405

It IS possible to write interruptible sleep routines, but it requires operating system calls and therefore would probably be need to be written in C (and, if server routines need to invoke the function, it would also be necessary to create a GCI subroutine definition - you don't really want to go th...
by ray.wurlod
Tue Oct 27, 2009 5:32 pm
Forum: Data Integration
Topic: DSTX Support
Replies: 1
Views: 8444

Not here. There are separate fora for TX (WebSphere Transformation Extender), for Information Analyzer (formerly ProfileStage formerly Mercator), and for lots of other things. Explore. However the form in which you posted is for general questions about data integration (stragegies, tools, techniques...
by ray.wurlod
Tue Oct 27, 2009 11:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Custom Stage
Replies: 1
Views: 1366

What values do your four APT compiler/linker environment variables have?
by ray.wurlod
Tue Oct 27, 2009 11:56 am
Forum: General
Topic: Passing job parm to body of notification activity
Replies: 2
Views: 1219

It is not possible.

It is documented as not being possible.
by ray.wurlod
Tue Oct 27, 2009 11:04 am
Forum: General
Topic: Staggered start in a sequence
Replies: 23
Views: 7405

Indeed, it would be easy to code, and you could put differential sleeps into a routine invoked from a Routine activity.
by ray.wurlod
Tue Oct 27, 2009 9:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Full form of APT
Replies: 5
Views: 5004

Trivium: "Apt" as a word is the antonym of "inept".
by ray.wurlod
Tue Oct 27, 2009 9:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Nodes Configration strange warning
Replies: 5
Views: 1913

Check the UNIX kernel limit on the number of processes any process can start. This is usually called something like NPROC.
by ray.wurlod
Tue Oct 27, 2009 9:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to hide passwords? Gets exposed because of ExecuteSH opt
Replies: 1
Views: 1054

Don't put them in the shell script to begin with. Redirect them for example by reading a file or using an environment variable.
by ray.wurlod
Tue Oct 27, 2009 9:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance issue ?
Replies: 9
Views: 3352

Are the columns mentioned in the WHERE clause indexed?
by ray.wurlod
Tue Oct 27, 2009 9:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: LIST.READU not showing locked jobs
Replies: 8
Views: 4074

What database do you use for the XMETA database? Use a regular client for that particular database. Note that affecting XMETALOCKINFO directly is neither supported nor recommended by the vendor. You should use the Web Console wherever possible.
by ray.wurlod
Tue Oct 27, 2009 9:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI Stagge
Replies: 4
Views: 2454

I have a vague memory that you need double semi-colons. (;;)
by ray.wurlod
Tue Oct 27, 2009 9:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Error
Replies: 1
Views: 992

Probably. Based on your previous post, it's probably not to overload your system so much. But you may also like to verify the indexing in your local DataStage repository.
by ray.wurlod
Tue Oct 27, 2009 9:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Job error
Replies: 3
Views: 1409

In short your system is overloaded. There may be an issue with starting processes, there may be issues with internal messaging and signal handling, and you're definitely running out of memory.
by ray.wurlod
Tue Oct 27, 2009 9:21 am
Forum: General
Topic: what are different types of joins possible in lookup stage
Replies: 1
Views: 1990

Lookup stage does lookups, not joins. You can emulate both inner and left outer join, depending on the Lookup Failed rule.

Merge stage definitely does not do a join; it follows a master and update(s) model. Again, you can emulate joins, this time via the Unmatched Master property.
by ray.wurlod
Mon Oct 26, 2009 7:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Huge tsorf files are getting created in Scratch space
Replies: 1
Views: 741

You need to be aware that DataStage moves stuff (data) around in large chunks (3MB by default though this is configurable). To create heap files for a heap merge sort, the files themselves will necessarily be large. But they're only temporary, so don't worry about it. Just make sure you have PLENTY ...