Search found 53125 matches
- 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
- 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...
- 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
- 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...
- 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...
- 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 ...
- 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
- 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...
- 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
- 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...
- 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.
- 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...
- Mon May 15, 2006 1:20 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Routine static call
- Replies: 7
- Views: 1395
- 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)- 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...