Search found 53125 matches

by ray.wurlod
Mon Jun 07, 2004 7:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage
Replies: 2
Views: 1284

After the job aborts, reset it. There may then be an entry in your log with the title "From previous run..." containing additional information. There are many possible causes of abnormal termination, as a search on this Forum will reveal. Usually it's because you've tried to do something illegal, li...
by ray.wurlod
Mon Jun 07, 2004 6:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: BitWise Functionality
Replies: 8
Views: 2200

Two questions. Have you tried compiling your job, or are you just asserting that it won't compile because the expression remains red? That the expression remains red is because the BitOr function does not exist in the DSParams file (on the server) from which the expression editor gets its list of fu...
by ray.wurlod
Mon Jun 07, 2004 6:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Diff data with lookup
Replies: 10
Views: 3380

Can you use a more complex SELECT statement to extract the rows in the first place? Something like: SELECT .... FROM tablename T1 WHERE T1.keycol IN (SELECT T2.keycol FROM tablename T2 WHERE T2.initialEntry = 0 AND T2.OriginalEntry > '03/20/2002' AND T1.keycol = T2.keycol)
by ray.wurlod
Mon Jun 07, 2004 6:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing in to Sequential file error
Replies: 5
Views: 3602

It certainly does. Can you review the contents of your Constraints grid in the Transformer stage and post the contents of the rightmost column?
by ray.wurlod
Mon Jun 07, 2004 6:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Environment Variables
Replies: 2
Views: 1889

Try clicking on Help (or F1) when in the environment variables creation window. There's some useful information there. You can also try searching for APT_CONFIG in the Parallel Job Developer's Guide , the DataStage Manager Guide , and the DataStage Administrator Guide . However, the answer to your a...
by ray.wurlod
Sun Jun 06, 2004 8:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Locating DataStage Engine directory in DOS
Replies: 0
Views: 544

Locating DataStage Engine directory in DOS

This paper shows a technique for using a BAT file to determine the location of the DataStage Engine directory.
by ray.wurlod
Sun Jun 06, 2004 8:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ODBC and Plugin
Replies: 8
Views: 2894

My experience has been that there's not much difference for SELECT (for most databases) between native API and ODBC, but that native API is much faster than ODBC when it comes to INSERT and UPDATE.

But, then, I even avoid the native API in this case, preferring bulk load wherever possible. 8)
by ray.wurlod
Sun Jun 06, 2004 8:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential file performance issue
Replies: 5
Views: 1604

Just to clarify, Vince's point about using separate disks really means different drives (spindles). Different partitions that are slices on the same spindle don't result in any gain; indeed, they can result in contention and therefore reduced throughput. Four parallel streams all reading the same so...
by ray.wurlod
Sun Jun 06, 2004 5:52 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: TO Check If a DOS filepath exists using Basic.
Replies: 14
Views: 4790

openpath and openseq are undistinguishible uner the covers, notice I said openpseq and openseq. Are you sure? OpenPath can open Type 1/19 files. What does it mean if OpenSeq opens one of these? I just tested it (OpenSeq with a Type 19 file); it took the Else clause with a Status() of 0, even though...
by ray.wurlod
Sun Jun 06, 2004 1:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: TO Check If a DOS filepath exists using Basic.
Replies: 14
Views: 4790

Thanks, Johno. I was aware of the OpenSeq issues - it weren't me, guv! I used OpenPath (not OpenSeq), and opened the directory into COMMON. Others magically transmogrified my OpenPath into OpenSeq. No-one seems to have noticed. I suspect, indeed, that even that was unnecessary, since !GET.PATHNAME c...
by ray.wurlod
Sun Jun 06, 2004 1:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The Aggregator Stage and sorting
Replies: 6
Views: 1350

How about a "generally accepted rule of thumb to everyone"? There's none that I know of. Theoretically the only upper limit is when the Aggregator stage runs out of allocable memory, but when that is depends on the individual operating system and on what else is happening (demanding memory) at the t...
by ray.wurlod
Sat Jun 05, 2004 4:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The Aggregator Stage and sorting
Replies: 6
Views: 1350

If the incoming data are not sorted, or even if they are but you don't tell the Aggregator stage, then the Aggregator stage must keep the progressive set function results (sum, count, etc.) in little buckets in memory, one bucket for each combination of the grouping columns. The total size in memory...
by ray.wurlod
Sat Jun 05, 2004 1:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential file performance issue
Replies: 5
Views: 1604

You could be overloading the machine. How many CPUs are there? What is the basis for splitting the rows? Is this being done in a single Transformer stage? How complex are the business rules? Are the rows in the sequential file improbably large? There are no tunables for the Sequential File stage. Th...
by ray.wurlod
Fri Jun 04, 2004 6:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: The Aggregator Stage and sorting
Replies: 6
Views: 1350

The Aggregator stage doesn't sort data. It can use pre-sorted data, in order to apply a much more efficient aggregation paradigm, but does not do any sorting itself. That data sometimes appear to come out sorted is an artifact of the aggregation algorithm, and ought not to be relied upon (just like ...
by ray.wurlod
Fri Jun 04, 2004 6:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Engine commands
Replies: 6
Views: 2337

Re: Command to get list of jobs with latest run times.

Hi Can anyone give me a command to get a list of all jobs with their latest run start and end times for those jobs? I want to create a report in Excel to show the times for those jobs. Please help me. Thanks in advance. Don't need a command. Use the Director client. Choose Status view. Uncheck Show...