Search found 42189 matches

by chulett
Tue Feb 10, 2015 7:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File - Read and Write Cache Setting
Replies: 12
Views: 6803

I'm still going to say that increasing the size doesn't really 'improve performance' per se unless perhaps your data was not fitting in the cache and thus not cached at all. It would allow your data to be cached (and remove the warnings Ray mentions) but if it is already cached and you just make the...
by chulett
Tue Feb 10, 2015 7:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Before SQL statement in DB2 Connector not working
Replies: 4
Views: 1275

Your problem is more than likely the 'from a file' part... what syntax are you using for that? Also curious if there any parameters in the file.

Personal opinion - that's not the right place to be doing that.
by chulett
Tue Feb 10, 2015 4:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File - Read and Write Cache Setting
Replies: 12
Views: 6803

qt_ky wrote:I'm not sure we're looking at the same post.
We are, sorry... having a bit of a brain fart trying to squeeze answers in between real work and not having access to my docs. More later when the codeine wears off and I try to get my crazy train back in the rails.
by chulett
Tue Feb 10, 2015 2:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File - Read and Write Cache Setting
Replies: 12
Views: 6803

Sure... was addressing the posted question of the hashed file size, there wasn't any mention of the actual read/writing caching options. There are a small number of situations where you wouldn't have read caching turned on and that's on by default from what I recall. Write caching on the other hand ...
by chulett
Tue Feb 10, 2015 10:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Migration of Datastage Server 8.1 to Datastage Server 8.5
Replies: 4
Views: 3788

Is there any particular reason you aren't upgrading to something more... recent?
by chulett
Tue Feb 10, 2015 10:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File - Read and Write Cache Setting
Replies: 12
Views: 6803

The first one has nothing to do with performance as far as I know. Row Buffering does, of course but IMHO it is something you really need to understand pro v. con before you just turn it on.
by chulett
Tue Feb 10, 2015 10:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File - Read and Write Cache Setting
Replies: 12
Views: 6803

The first one has nothing to do with performance as far as I know. Row Buffering does, of course but IMHO it is something you really need to understand pro v. con before you just turn it on.
by chulett
Tue Feb 10, 2015 8:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File - Read and Write Cache Setting
Replies: 12
Views: 6803

Re: Hashed File - Read and Write Cache Setting

The Default project setting for Read and Write Cache is 128 MB. Does changing value higher, say to 256 MB, assist in improving job performance that are reading or writing to a Hashed File? No. In all my born Server days, I don't recall ever needing to change that. Except maybe once and I no longer ...
by chulett
Tue Feb 10, 2015 8:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage Px job
Replies: 6
Views: 2230

In other words, spell it out in words - don't just simply show us the before and after and make everyone here try to puzzle it out. Are you sure it shouldn't be? 10, A 10, A,B 10, A,B,C 10, A,B,C,D 20, P 20, P,Q 20, P,Q,R 20, P,Q,R,S Or perhaps: 10, A,B,C,D 20, P,Q,R,S Only the latter answer makes s...
by chulett
Mon Feb 09, 2015 11:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing Time(7) in SQL server
Replies: 2
Views: 1646

What kind of 'comparison' are you attempting? I would imagine you could convert both the strings in a common format and then compare those.
by chulett
Mon Feb 09, 2015 11:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Jobs Performance Very Slow post Infosphere Upgrade
Replies: 20
Views: 18166

qt_ky wrote:I thought that the NLS setting was an install-time only decision. See what others say and/or contact Support.
It basically is... see Ray's simul-post.
by chulett
Mon Feb 09, 2015 4:08 pm
Forum: General
Topic: DataStage SET.FILE command
Replies: 2
Views: 1275

Why don't we start with - what problem are you trying to solve? The 'compile error' in the technote and you believe your Stage Types hashed file may be corrupt?
by chulett
Mon Feb 09, 2015 2:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Jobs Performance Very Slow post Infosphere Upgrade
Replies: 20
Views: 18166

Server jobs... no peeking. Instead you would set a constraint of @FALSE in the output link of the transformer if you were trying to gauge extraction speed alone.
by chulett
Mon Feb 09, 2015 12:58 pm
Forum: General
Topic: Execute command activity output is not working
Replies: 3
Views: 2524

Well... not exactly what I meant. Your earlier trigger conditions should have been fine if you just added the redirect of stderr to the first command, the one throwing errors when no file exists. One variation: ls -lrt /Path/*ABC*.xml 2> /dev/null | wc -l That would suppress the 'No such file or dir...