Search found 53125 matches
- Mon Jan 03, 2005 3:05 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Compare Stage
- Replies: 4
- Views: 1479
- Mon Jan 03, 2005 2:49 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: String Search Help
- Replies: 5
- Views: 1903
- Sun Jan 02, 2005 5:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Filtering folder content according to file size,date....etc?
- Replies: 10
- Views: 2914
- Fri Dec 31, 2004 5:29 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: is there any certification in AscentialDataStage
- Replies: 3
- Views: 785
At Ascential Developer Net they announced that certification would be available in Q4 2004 (they'd better hurry!), and provide an email address where you can seek more information, namely Certification@Ascential.com
- Fri Dec 31, 2004 12:17 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to Use Exception Handler in Job Sequences
- Replies: 2
- Views: 743
- Fri Dec 31, 2004 12:09 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job aggregator aborted.
- Replies: 1
- Views: 577
Welcome aboard! :D The Aggregator stage, as you'll discover by searching this Forum, is notorious for not coping with large (or even medium) volumes of unsorted data. Workarounds are: pre-sort the data to be aggregated (for example using ORDER BY when selecting from a database) - but avoid the Sort ...
- Thu Dec 30, 2004 3:21 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Timestamp in Teradata
- Replies: 1
- Views: 731
Try
insead of
The Fmt function delivers the six decimal places with trailing zeroes.
Code: Select all
Fmt(Field(TIME(), ".", 2), "L%6")insead of
Code: Select all
Field(TIME(), ".", 2)The Fmt function delivers the six decimal places with trailing zeroes.
- Thu Dec 30, 2004 3:14 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: swap usage
- Replies: 3
- Views: 1511
How long is a piece of string? You have 2600 osh processes (which does seem a lot on an 8 CPU machine!). On average that's 33MB of swap (85GB/2600) per osh process. You say that you have "heavy" processing. In that case, maybe 33MB isn't unreasonable. What "load" do you want to reduce? Your machine ...
- Thu Dec 30, 2004 3:08 pm
- Forum: IBM QualityStage
- Topic: Error message in qualitystage
- Replies: 4
- Views: 2833
- Thu Dec 30, 2004 3:06 pm
- Forum: IBM QualityStage
- Topic: Error message in qualitystage
- Replies: 4
- Views: 2833
- Wed Dec 29, 2004 10:57 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Compare Stage
- Replies: 4
- Views: 1479
Logical partitions are a way of making one set of hardware behave as if it's more than one. I am not aware of any way of processing from more than one LPAR at a time from one process. Why not try it, and let us know? PX runs in multiple processes, and can run in an MPP environment. However, whether ...
- Wed Dec 29, 2004 10:43 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Implementing SCD Type-2 in DataStage
- Replies: 2
- Views: 2911
Only if you post your job design to show us how you are detecting existence of the row in the target table. Wrap your design in Code tags (which gives a fixed width font) and play with Preview until it's obvious that your design is clear to someone else. For example: HashedFile1 HashedFile2 | ^ | | ...
- Wed Dec 29, 2004 10:37 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: backup of DataStage project
- Replies: 8
- Views: 3602
We use a BAT file that exports to a shared drive (one that is backed up daily), first taking a copy of yesterday's export. So at any time we've got DSExport.dsx and DSExport.dsx.bak on disk, and anything older can be recovered from backup. We don't bother with compression; there's plenty of free dis...
- Wed Dec 29, 2004 10:32 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Weird Problem in Server jobs
- Replies: 2
- Views: 1029
RT_LOGnn is almost certainly corrupted. Did it reach 2GB? Have you been purging it regularly? A very large log can give the impression of Directory hanging; it performs a full table scan to find those records that satisfy the current filter setting. It wasn't really hanging; it was waiting. And you ...
- Wed Dec 29, 2004 3:20 pm
- Forum: IBM QualityStage
- Topic: IMport File definitions
- Replies: 1
- Views: 1628
There's nothing really direct. You could push them into MetaStage, then import them from there using QualityStage Designer (open the DataFile Definitions part of a QS project, choose File > Import > Datafile Definition > From MetaStage). Some time ago I created DataStage BASIC code to dump table def...