Search found 53125 matches

by ray.wurlod
Mon May 15, 2006 2:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Minimum Number of MIPS required with DSMVS version
Replies: 3
Views: 853

No, I cannot. I have no idea what analytical tools are available on your mainframe. It's not important anyway; discover heuristically how much processing capacity is needed. You'll probably be pleasantly surprised.
by ray.wurlod
Mon May 15, 2006 2:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HowToCompare Data with in a file?
Replies: 1
Views: 838

There is technically no such thing as "the 51st row in a table". One of the precepts of normalized databases is that storage order is under control of the engine and neither controllable nor predictable. Assuming therefore that you have a key by which the data are ordered during extraction, the task...
by ray.wurlod
Mon May 15, 2006 2:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: HowToCheck Whether File contain today’s date in its name?
Replies: 1
Views: 875

If the file name is a job parameter you can make this test in a simple expression if all you want to test for is "contains eight contiguous digits". If you want to check that they form a valid date then you will need a Routine.
by ray.wurlod
Mon May 15, 2006 2:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Loading Mainframe files
Replies: 2
Views: 1035

DataStage EE MVS edition can deal with fixed width flat files, delimited flat files, complex (multi record format) flat files and DB2/390 tables. There is also an FTP stage that can be used to transfer flat files to a UNIX or Windows based server. No other edition can capture files from the mainfram...
by ray.wurlod
Mon May 15, 2006 2:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while installing DS EE on AIX
Replies: 6
Views: 1872

I note that uvregen is trying to generate a shared memory segment 6,924,252 bytes in size. Usually this shared memory segment is under 1MB. Please check that this large size of shared memory segment is possible on your system. Most UNIX systems have the kernal parameter SHMMAX, but AIX has more self...
by ray.wurlod
Mon May 15, 2006 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformation
Replies: 5
Views: 1899

You only need one stage variable, let's call it svLOG. Initialize to 0. Derive as If InLink.CPD = 0 Then InLink.LOG Else svLOG Make sure that your source data are sorted properly (by ID then by CPD) and that CPD is 0 in the first row. Make sure also that all values in each combination of ID and CPD ...
by ray.wurlod
Mon May 15, 2006 2:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage installation on Linux for parallel processing?
Replies: 3
Views: 1139

Yes, on a cluster of four Linux machines is the way that many of the Ascential PX classes were taught. And, yes, it does parallel processing.
by ray.wurlod
Mon May 15, 2006 2:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HAWK release status
Replies: 13
Views: 3213

No news is probably good news. The longer they spend getting it right, the better the end product is likely to be. Stay tuned, be patient. You are too late to enrol in the beta testing program. Have your vendor monitor the situation. You can be certain that it will come out with much fanfare. My tip...
by ray.wurlod
Mon May 15, 2006 2:24 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error Segment Fault
Replies: 1
Views: 804

Most segmentation faults relate to trying to access a memory address that you don't own. One way you can do this is to try to stuff more than N characters into a string[N] or string[max=N] field. There are other ways.
by ray.wurlod
Mon May 15, 2006 2:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Benifit of using Parallel transformer
Replies: 2
Views: 1405

I would have to add to the answer to point 2 that the parallel Transformer stage will always out-perform the BASIC Transformer stage achieving the same task, for a reasonable volume of data. This is because to use the BASIC Transformer stage it is necessary to convert the stream of data into the "ty...
by ray.wurlod
Mon May 15, 2006 3:38 am
Forum: Site/Forum
Topic: Approaches via private email or private message
Replies: 2
Views: 2225

There are few "repeat offenders". I have a standard response, with a copy to admin@dsxchange.com, after which some apologize for stepping over the line. On two occasions my professional services have actually been engaged.
by ray.wurlod
Mon May 15, 2006 1:24 am
Forum: Site/Forum
Topic: Approaches via private email or private message
Replies: 2
Views: 2225

Approaches via private email or private message

On a number of occasions advice has been posted that approaches made via private email or private message may be regarded as requests to engage professional services. Could this advice be reiterated in the Contact frame of the profile viewer? I believe this is where most who undertake these approach...
by ray.wurlod
Mon May 15, 2006 1:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine static call
Replies: 7
Views: 1395

Aha, but functions are implemented as subroutines. So you can! The following are equivalent in DataStage BASIC. SUBROUTINE Name(Arg1, Arg2, Arg3) * code here RETURN FUNCTION Name(Arg2, Arg3) * code here RETURN(Arg1) It is for this reason that a function may have at most 254 a...
by ray.wurlod
Mon May 15, 2006 1:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To Get maximum of two input fields
Replies: 3
Views: 918

To use MAXIMUM you need to craft your list of values as a dynamic array - that is, put a field mark or value mark between each. For example

Code: Select all

Maximum(Link1.ColA : @FM : Link1.ColB)
by ray.wurlod
Mon May 15, 2006 1:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference between sever and parallel job
Replies: 9
Views: 2398

The original question was "in terms of performance". There's a break-even point somewhere between small and medium data volumes where the startup time of a parallel job means that it takes longer to complete than the equivalent server job. For medium to large, and beyond, data volumes, a well-crafte...