Search found 53125 matches

by ray.wurlod
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

I believe that your approach - using FTP and comparing locally - is the only one that will work. How can you get the Compare stage even to refer to something in a different LPAR? However, I'd be quite happy to be proven wrong on this one.
by ray.wurlod
Mon Jan 03, 2005 2:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: String Search Help
Replies: 5
Views: 1903

How about FINDSTR, which is a partial match in a dynamic array? You have to convert your delimiters to dynamic array delimiters. TempString = Convert("*", @FM, InString) FindStr "CA" In TempString Setting FMC,VMC,SMC Then Ans = TempString<FMC> End Else Ans = "" ...
by ray.wurlod
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

Here's one example, following ISO 8601 standard for presenting date and time. *strat of MYCODE here Call DSLogInfo("FileName: ":FileName, "MYCODE") Call DSLogInfo("AccessTime : ":Oconv(AccessTime,"MTS:") , "MYCODE") Call DSLog...
by ray.wurlod
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
by ray.wurlod
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

What have you read in on-line help (topic Exception Activity Properties)?
What have you read in the DataStage Designer's Guide (coredev.pdf), particularly page 6-24?

What else do you need to know? The above seem entirely clear to me.
by ray.wurlod
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 ...
by ray.wurlod
Thu Dec 30, 2004 3:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Timestamp in Teradata
Replies: 1
Views: 731

Try

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.
by ray.wurlod
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 ...
by ray.wurlod
Thu Dec 30, 2004 3:08 pm
Forum: IBM QualityStage
Topic: Error message in qualitystage
Replies: 4
Views: 2833

Given that it's complaining about !/bin/vsh, it may also be the case that a script has not been correctly formed. The first line of any QualityStage script should be #!/bin/vsh (note the # character designating a comment).
by ray.wurlod
Thu Dec 30, 2004 3:06 pm
Forum: IBM QualityStage
Topic: Error message in qualitystage
Replies: 4
Views: 2833

When you install QualityStage, one of the installation steps is to create a symbolic link called /bin/vsh that points to the Bourne shell (usually /bin/sh).

See page 1-5 of the QualityStage UNIX, Linux and Windows NT Server Guide.

Did you ("they") do this?
by ray.wurlod
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 ...
by ray.wurlod
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 | ^ | | ...
by ray.wurlod
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...
by ray.wurlod
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 ...
by ray.wurlod
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...