Search found 42189 matches

by chulett
Tue Apr 12, 2005 8:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Choosing hash or sequential as intermediate files
Replies: 8
Views: 1923

roy wrote:But,you can always SET.FILE pathed hash files to COUNT them :)

I know. Just picking on Arnd. :wink:
by chulett
Tue Apr 12, 2005 7:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Choosing hash or sequential as intermediate files
Replies: 8
Views: 1923

ArndW wrote:You can also execute a command line COUNT <hashfilename> or SELECT COUNT(*) FORM <hashfilename>; from the Administrator.

As long as they're not 'pathed'. :wink:
by chulett
Tue Apr 12, 2005 7:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Set job status to "not compiled"
Replies: 4
Views: 1586

Joshi - that's an... interesting... solution. Not something I would have thought of, mostly because our Production jobs are read only and can't be horked with like that. Suggest you build checkpoints into the process, much like Roy mentions. I've taken more of an approach in the past of assinging a ...
by chulett
Tue Apr 12, 2005 7:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: First non null value
Replies: 6
Views: 2251

That was my understanding.
by chulett
Tue Apr 12, 2005 6:59 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is Manager reliable?
Replies: 5
Views: 1458

Out of curiousity, are you importing an export made in XML format? Those have to first be converted from xml to dsx and that happens under the covers with no indication of anything going on other than your CPU being pegged by something called 'xml2dsx.exe', from what I recall. Large ones can take qu...
by chulett
Mon Apr 11, 2005 5:42 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Case sensitive sorting
Replies: 2
Views: 724

If you use capital letters for the sort criteria - A, ASC, D, DESC, etc - you get a case insensitive sort. To make it case sensitive use lower case letters - a, asc, d, desc, etc.

This is all spelled out in the .pdf documentation for the stage.
by chulett
Mon Apr 11, 2005 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Sequencing
Replies: 3
Views: 1038

*claps*
by chulett
Mon Apr 11, 2005 4:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 64 bits
Replies: 7
Views: 1793

Yah... it was so extra special and exception-full that we are always at the end of the port list. "It won't be ready for our platform until when?" :lol:
by chulett
Mon Apr 11, 2005 1:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to import/export the latest batch jobs
Replies: 2
Views: 770

Re: How to import/export the latest batch jobs

1. During selection of the job to import there are 4 jobs of the same name. How do I know which is the latest batch job...? Import? If you mean 'Initialize' into VC then there can't be 4 jobs with the same name. Same thing when you 'Promote' from VC to a project, you'll find the jobs all have diffe...
by chulett
Mon Apr 11, 2005 10:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 64 bits
Replies: 7
Views: 1793

I could have sworn - back in the day - when I was running on a Tru64 cluster and 6.0 came in the door, it went from 32bit to 64bit as part of that upgrade. There was a need to upgrade to a specific compiler release and I thought mention was made of large speed increases directly as a result of every...
by chulett
Mon Apr 11, 2005 8:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Mass Compile
Replies: 5
Views: 1730

You really should read the What's New documentation that comes along with the product. :wink: It's built into the Manager, under the 'Tools' menu.
by chulett
Mon Apr 11, 2005 8:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: First non null value
Replies: 6
Views: 2251

You may need to filter out the records with the nulls in an upstream constraint so they don't even get to the Aggregator... it's not real fond of nulls anyway. Is that a possibility?
by chulett
Mon Apr 11, 2005 8:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Time out Error
Replies: 3
Views: 1482

The 14 is a resource error, from what I recall. You have overloaded your machine. You either need to throttle back on how many you run at any given time, or look into upping some of the internal configuration parameters for the DataStage server. Not something for the faint of heart... or the subject...
by chulett
Mon Apr 11, 2005 8:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash Logic
Replies: 3
Views: 861

Very true! Two links into one stage doesn't mean that they write to the same hash. All it guarantees is they live in the same account or are pathed in the same directory.
by chulett
Mon Apr 11, 2005 8:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: NULL check
Replies: 4
Views: 1126

Comparison against @NULL is meaningless; the result is necessarily "unknown". That is, you can't legitimately say Col = @NULL and expect it to behave in a Boolean fashion (in fact, there are rules in DataStage that govern the behaviour under these circumstances, but won't yield the results you expe...