Search found 53125 matches

by ray.wurlod
Mon May 30, 2005 3:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "Use Account name " option is not working
Replies: 5
Views: 1148

It must be correctly cased on Windows, too.

The value here is the key to UV.ACCOUNT, which is accessed to determine the pathname of the project directory.
by ray.wurlod
Mon May 30, 2005 3:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: file merge
Replies: 12
Views: 3256

bdixon's most recent post still doesn't specify the desired output. However, the data example given earlier suggests that these files are not good candidates for the Merge stage, since there is no apparent key column on which to specify the join. Can we see the exact output requirement, before leapi...
by ray.wurlod
Mon May 30, 2005 3:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting Date() to datetime
Replies: 7
Views: 1512

If you want the milliseconds from the system clock, use SYSTEM(12). OCONV(DATE(), "D-YMD[4,2,2]") : " " : OCONV(TIME(), "MTS:[2,2,2]") : "." : FIELD(SYSTEM(12), ".", 2, 1)
by ray.wurlod
Mon May 30, 2005 3:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: refreshing oracle materialized views
Replies: 5
Views: 4174

It was always my understanding that materialized views are best automatically maintained by the database. Certainly this is the case with Red Brick (in which they are called precomputed views). Otherwise what's the point of calling it "materialized"? If it's out of date then it's no better than a st...
by ray.wurlod
Mon May 30, 2005 3:34 pm
Forum: IBM<sup>®</sup> SOA Editions (Formerly RTI Services)
Topic: Primer for Web Services
Replies: 4
Views: 3131

Step 1. Create a working DataStage job. stage ---> stages ---> stage (The intermediate stages can include QualityStage plug-in if needed.) Step 2. Add RTI Input and RTI Output stages to replace the passive stages. RTI Input ---> stages ---> RTI Output Step 3. If the Web service is going to exchange ...
by ray.wurlod
Sun May 29, 2005 10:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I want to replace the value in a particular position
Replies: 7
Views: 1551

You DO have to tell it the value with which you want to replace the current value, and you DO have to tell it the position at which to replace. You're correct that Ereplace and Change functions are probably not appropriate. Ken's answer is entirely correct. Instead of the hard-coded "Z" value, you n...
by ray.wurlod
Sun May 29, 2005 8:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: file merge
Replies: 12
Views: 3256

I note that you are on version 5.x and am not sure that the Merge stage is available. Note, also, that there is a server Merge stage and a parallel Merge stage, which are completely different from each other. The server Merge stage has no input links. You provide the pathnames of two source files as...
by ray.wurlod
Sun May 29, 2005 4:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage best practices doc needed
Replies: 3
Views: 1444

The best response to your client is the honest one, that "best practice" varies with the application. If you're using DataStage to maintain a data warehouse, then best practice is different than if you're using DataStage to expose web services for name and address verification, and different again i...
by ray.wurlod
Sun May 29, 2005 5:45 am
Forum: IBM QualityStage
Topic: Match Cutoffs and Clerical Cutoffs
Replies: 7
Views: 4017

You can always make multiple passes (this is what the Pass column in the report indicates). Each pass can refine the criteria of the earlier one. I don't believe that the exact algorithms are published. The numbers are generated for each field, and represent the "information content". So, if a match...
by ray.wurlod
Sun May 29, 2005 5:39 am
Forum: IBM QualityStage
Topic: Path for QS Metadata Import log file
Replies: 6
Views: 2849

Search for the log, note where it is, and set that location as the value. Filtering your search by date modified will reduce its duration.
by ray.wurlod
Sun May 29, 2005 5:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Packed Decimal conversion
Replies: 3
Views: 1294

It's the Oconv that's stripping zeroes.

To retain them, wrap in a Fmt function.

Code: Select all

InputNbr = Fmt(Oconv(InputNbr, "MCN"), "R%14")
by ray.wurlod
Sat May 28, 2005 8:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null handling in PX Sequential files
Replies: 23
Views: 19108

You can specify how null is represented as a stage property. However the OP's question was clearly about delimited records, so we're straying a little off topic. Lance's response could be read as suggesting that setting the environment variable also has an impact on delimited data, since that's what...
by ray.wurlod
Sat May 28, 2005 1:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: to_char and to_number equivelent
Replies: 9
Views: 3346

Let me chime in with the same answer. You just can't do conversions or casting in an environment where there are no data types! You can check that it's numeric (with the Num() function), you can determine that it's an integer (with pattern matching, for example), there are lots of other choices for ...
by ray.wurlod
Sat May 28, 2005 1:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Queries on sequential file stages
Replies: 7
Views: 2384

The Load button on the Format tab is a too-frequently used capability that can load the Format of the sequential file (as opposed to its column defintiions) as imported into the Repository. PhilHibbs has bemoaned the fact that we're forced to do them separately; and suggested - without posting an en...
by ray.wurlod
Sat May 28, 2005 1:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Null handling in PX Sequential files
Replies: 23
Views: 19108

Clarification: That environment variable has the name APT_IMPEXP_ALLOW_ZERO_LENGTH_FIXED_NULL (whew!) and applies only to the Import and Export operators in the framework.