Search found 53125 matches
- Thu May 25, 2006 3:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Date format
- Replies: 2
- Views: 883
- Thu May 25, 2006 3:10 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Comparing values in Routaine
- Replies: 6
- Views: 1260
- Thu May 25, 2006 2:55 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Split one row to many based on nos of comma
- Replies: 5
- Views: 941
No. You need to separate them out into separate columns for the Pivot stage. Define the maximum number of columns you might ever need, and set the unused ones to null. Another technique (though you will have to execute in sequential mode) is to convert all the commas to line terminators (LF in UNIX)...
- Thu May 25, 2006 12:18 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Split one row to many based on nos of comma
- Replies: 5
- Views: 941
- Thu May 25, 2006 12:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Child Job Identification
- Replies: 3
- Views: 1080
- Thu May 25, 2006 12:11 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Stop creation of files if the constraint does not satisfy.
- Replies: 4
- Views: 1164
- Wed May 24, 2006 10:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: I need help to create a sequential file with metadata
- Replies: 9
- Views: 4038
There is nothing directly within DataStage for doing this. You can generate this information using the Reporting Assistant or "hacking" the repository (perhaps with a DataStage job). You would need to know what fields within DS_METADATA contain the information you require; this metadata is not in th...
- Wed May 24, 2006 10:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Modifying the Hashed file Key
- Replies: 5
- Views: 1602
- Wed May 24, 2006 10:33 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Image file to BLOB field in Oracle
- Replies: 3
- Views: 1763
The answer is "not directly". DataStage is an ETL tool; what kind of transformation would you expect to perform on an image file or a BLOB? Those who have had this requirement have tended to perform some kind of hex encoding, so that DataStage is able to move only printable characters. You may, even...
- Wed May 24, 2006 10:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Child Job Identification
- Replies: 3
- Views: 1080
- Wed May 24, 2006 10:21 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Comparing fields apart from usin change capture stage
- Replies: 2
- Views: 920
Welcome aboard. :D There are three stages for performing comparisons; you ought to investigate the Difference stage and the Compare stage. The Difference stage returns a simple result and all columns from both inputs; the Compare stage returns three columns; the result and the two input records as s...
- Wed May 24, 2006 5:34 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: writing many columns which has null values to a seq. file?
- Replies: 4
- Views: 1034
- Wed May 24, 2006 5:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Is there any benefit to use Unix shell script to control job
- Replies: 6
- Views: 1701
Any form of "computer programming" is actually communicating with the next programmer. Consider what the next programmer will find easier, but do not forget that, as aditya observed, there may be other activities that also need to be scheduled/controlled. Most of these could probably be managed via ...
- Wed May 24, 2006 5:26 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSSendMail
- Replies: 5
- Views: 3087
- Wed May 24, 2006 3:04 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Merging 4 databases table records into 1 database table
- Replies: 6
- Views: 1332
Good catch! My SQL solution earlier will still work, but there is no Funnel stage in server jobs. But do you really need to collect them at all? Four parallel streams of processing can feed inserts into the single table. You can design these into one job, or make one job multi-instance and run four ...