Search found 15603 matches

by ArndW
Thu May 14, 2009 1:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Performance Tuning Tips
Replies: 2
Views: 3187

Tuning is, in my opinion, a two-phase iterative process. For some reason, many think that there are ready-made solutions to tuning, sort of like a magic "take two aspirins and call me in the morning", or "raise MFILES and all your problems will be gone". 1. Measure. The first ste...
by ArndW
Thu May 14, 2009 10:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Checksum of a file
Replies: 5
Views: 1575

Since a checksum by definition needs to traverse the complete file and that DataStage works on single rows and attempts to process them in parallel you won't have a builtin way of getting a checksum. But you can do an external call to UNIX to do this - the question is why do wish to do this? General...
by ArndW
Thu May 14, 2009 8:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error creating project
Replies: 4
Views: 2878

What userid are you using and can you do a "touch test" or "mkdir test" in the target location from UNIX? Is the "UV.ACCOUNT" file there and what are the permissions on it?
by ArndW
Wed May 13, 2009 4:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abort because of contention
Replies: 5
Views: 1021

Do you have other processes exclusively locking the table? Is there no SQL error code or text listed apart from what you posted? A DBA might be able to track issues from outside of DataStage as well.
by ArndW
Wed May 13, 2009 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import CFD File layout
Replies: 8
Views: 2060

Not line 8 but column 8, the "*" means a comment in column 7 and thus your error.
by ArndW
Wed May 13, 2009 10:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abort because of contention
Replies: 5
Views: 1021

There has to be more error information, that is a pretty generic message - how does that lead you to assume contention?
by ArndW
Wed May 13, 2009 10:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regular Date To JulianDate
Replies: 11
Views: 4343

I don't have access to DS or the manuals, but I kind of doubt your 1900000 addition/subtraction - that number looks wrong. Where did you get that and are you certain it works?
by ArndW
Wed May 13, 2009 9:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with IIS v8.1 on Redhat Linux [Abnormal termination]
Replies: 12
Views: 7768

What solved the problem - renaming the table or using a different stage? You need to get back to where the problem is reproduceable in order to find out the cause by changing small things until the error goes away.
by ArndW
Wed May 13, 2009 9:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regular Date To JulianDate
Replies: 11
Views: 4343

Have you tried the inverse function,

Code: Select all

OCONV(ICONV("2009-04-06","D4-YMD[4,2,2]")[b]-1900000[/b],"DJ")[code]
by ArndW
Wed May 13, 2009 9:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abort because of contention
Replies: 5
Views: 1021

Could you post the exact error message(s) you getting - a lot will depend upon which type of contention you are seeing.
by ArndW
Wed May 13, 2009 8:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regular Date To JulianDate
Replies: 11
Views: 4343

Can you break up the problem into 2 steps, first the ICONV and then the OCONV?
When you get "109096" what function do you use and do you convert it to a display date or a DataStage internal date?
by ArndW
Wed May 13, 2009 8:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: capture rejected records and reason forrejection
Replies: 3
Views: 899

When you put an output link from your target Oracle stage and enable rejects, the SQL error code is added automatically to the output link.
by ArndW
Wed May 13, 2009 8:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Import CFD File layout
Replies: 8
Views: 2060

What column is that "*" in? Cobol is picky about indenting. Col 7 for comment, 8-11 and 12 to 79.
by ArndW
Wed May 13, 2009 8:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with IIS v8.1 on Redhat Linux [Abnormal termination]
Replies: 12
Views: 7768

Just changing the name fixed it? Very odd indeed. Was the malloc() error caused by memory filling up? I suppose it is too late now to narrow down the cause.
by ArndW
Wed May 13, 2009 7:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Slow performance writing to lookup fileset with direct i/o
Replies: 1
Views: 1096

Which OS are you using and could you post the volume settings? This speed difference might be due to sparse file allocation - OTOH, cacheing is done to speed up I/O and this might just be a case where it makes all the difference.