Search found 53125 matches

by ray.wurlod
Mon Jan 02, 2006 5:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: clean database
Replies: 3
Views: 1109

I believe that "clear table" implies "DELETE FROM table;" which can be hugely slow if there are lots of referential integrity constraints. If these are made into a single transaction nothing at all will appear to occur until the COMMIT is transmitted.
by ray.wurlod
Mon Jan 02, 2006 5:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Don't we need Table Defs to run the DSJob ?
Replies: 8
Views: 1962

MetaStage (and Manager Usage Analysis) don't work if table names are job parameters. It seems happy enough if user ID, password and even schema are job parameter references, however.
by ray.wurlod
Sun Jan 01, 2006 4:30 pm
Forum: Site/Forum
Topic: Happy New Year and welcome to 2006
Replies: 6
Views: 3210

Re: Happy New Year and welcome to 2006

2006 - So far we've managed to postpone Orwell's predictions for 22 years and are still running. You just haven't been paying attention, have you? On New Year's Day in Sydney the temperature was 44C (111F) - it was literally too hot to run my laptops! Not what the population needed to get over a hu...
by ray.wurlod
Sat Dec 31, 2005 4:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Same partition with Two Nodes
Replies: 7
Views: 1938

It's obliging two processes to be created for each stage operating in parallel mode. Presumably to force the use of two CPUs, even though they're sharing not only memory but also disk and scratch disk resources.
by ray.wurlod
Sat Dec 31, 2005 12:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Don't we need Table Defs to run the DSJob ?
Replies: 8
Views: 1962

Aaarrggh!! The whole rationale behind being able to import table definitions then load them into jobs, fully or partially, using mouse clicks is that they remain untouched by human hands, and therefore error-free. This maximizes your chances of creating a working job first time. While the other post...
by ray.wurlod
Sat Dec 31, 2005 12:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routine relative library path
Replies: 5
Views: 2785

Please post the actual error(s) thrown by the compiler, let us contemplate whether or not it is helpful in diagnosing the problem.

Do you refuse to tell your doctor your symptoms when you visit, dismissing them as unhelpful?
by ray.wurlod
Fri Dec 30, 2005 4:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: $PROJDEF
Replies: 4
Views: 1233

Welcome aboard! :D There are three special tokens that can be used as the default value for an environment variable set up via the Administrator client. $PROJDEF picks the value up from what was set in the Administrator client. $ENV picks the value up from the executing user's environment. $UNSET ex...
by ray.wurlod
Fri Dec 30, 2005 4:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding NULL
Replies: 4
Views: 1451

1. Trim() never results in a zero-length string.

2. A zero length string ("") has a known value. Null is unknown. You can never claim that they are equal (or even unequal).
by ray.wurlod
Fri Dec 30, 2005 4:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error in code generation.
Replies: 4
Views: 1012

My misunderstanding - this used to be called pre-compilation; it's the phase where the code generator does a "sanity check" of the design before attempting to generate code. This style of message usually arises when there is some mandatory property missing, such as a file or table name. Mainframe jo...
by ray.wurlod
Fri Dec 30, 2005 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with upgrading from 7.0 to 7.5 - Oracle error
Replies: 5
Views: 1659

Welcome aboard! :D The second logged message in any job log (in Director) shows all environment variables that are set for the job. Please check there to see whether the environment variables are being picked up. How are you setting them? Sometimes you have to re-boot a Windows machine before new/ch...
by ray.wurlod
Fri Dec 30, 2005 4:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to add two input time columns
Replies: 3
Views: 992

You're almost certainly going to need something custom here, because there's nothing out of the box to add date/time data.

Be aware that you need to handle situations like the result not being on the same day as the original date/time, and possibly a negative time to add.
by ray.wurlod
Fri Dec 30, 2005 4:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Same partition with Two Nodes
Replies: 7
Views: 1938

OK, I now see that you mean "two identically defined processing nodes". Though unusual, and not optimally efficient, this is legal and not the source of your problem. It appears that the virtual Data Set on the link between the srcSeqFile stage and the Surrogate Key Generator stage contains some kin...
by ray.wurlod
Fri Dec 30, 2005 3:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Connection from client to Server
Replies: 6
Views: 1632

It might be a dedicated link, but with how many others are you sharing the bandwidth? Have they been watching the cricket (Australia v South Africa) in real time? TCP/IP is the preferred protocol between client and server for DataStage. In theory you can use LAN Manager (to a Windows server only), b...
by ray.wurlod
Fri Dec 30, 2005 3:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: error in code generation.
Replies: 4
Views: 1012

If it's a mainframe job you can't validate it - you can only push the COBOL and JCL files to the mainframe for compilation and execution.
Please confirm whether this is a mainframe job or a server job.
by ray.wurlod
Thu Dec 29, 2005 10:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Getting an error msg as 'colunms cannot be mapped due.....'
Replies: 1
Views: 493

The data type on one side of a Transformer stage for one or more columns is incompatible with the data type of the derived column. For example, you may be trying to map a PIC X(20) into a PIC X(16), or a PIC 9(9)V99 into a PIC 9(6) or even - shock, horror!, a PIC X into a PIC 9. You need to investig...