Search found 53125 matches

by ray.wurlod
Mon Sep 29, 2008 5:23 pm
Forum: General
Topic: datastage designer
Replies: 1
Views: 1126

Physically no difference. Each is a stream of bytes. The term "flat file" stems from the fact that they must be processed sequentially - one must read past each byte to get to the next. CSV and XML files are also flat files in this sense. The terms CSV and XML (and there are others) refer to the way...
by ray.wurlod
Mon Sep 29, 2008 3:32 pm
Forum: General
Topic: Migrating DataStage resources...a sort of poll
Replies: 20
Views: 6344

My choice: export minus executables, compile in new environment. We're fairly rigorous about recording and picking up dependencies, but the compile picks up any that are missed (for example there's no mechanism within the product to record dependent Transforms).
by ray.wurlod
Mon Sep 29, 2008 6:15 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to generate Meta data at runtime in Server editon
Replies: 6
Views: 1850

No. Server jobs do not support dynamic metadata.
by ray.wurlod
Mon Sep 29, 2008 6:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: reverse pivot
Replies: 1
Views: 1066

We don't do "asap" or "urgent". DSXchange is an all-volunteer site whose members may post as and when they can, and then only if they have something to contribute. If you want urgent help, sign up with your support provider for priority service, and learn the true cost of "urgent". Your support pro...
by ray.wurlod
Mon Sep 29, 2008 6:09 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: One Unique surrogate key for all input records.
Replies: 7
Views: 1526

Please mark the thread as Resolved using the green button at top.
by ray.wurlod
Mon Sep 29, 2008 6:06 am
Forum: General
Topic: (40503) A call to an OLE server has failed, or a runtime err
Replies: 5
Views: 9604

Therefore please (a) mark the thread as Resolved (green button at top) and (b) add a post indicating HOW it was resolved, to aid future searchers.
Thank you.
by ray.wurlod
Mon Sep 29, 2008 4:22 am
Forum: General
Topic: (40503) A call to an OLE server has failed, or a runtime err
Replies: 5
Views: 9604

Welcome. A Search for 40503 yielded 21 hits (including this thread). Is there anything in any of those that matches your situation?

The OLE server in this case is highly likely to be dsobjects.dll or one of the OLE servers that it in turn invokes. Therefore Arnd's comments are pertinent.
by ray.wurlod
Mon Sep 29, 2008 4:19 am
Forum: Data Quality Best Practices
Topic: Data Matching: QualityStage vs Oracle’s Soundex
Replies: 5
Views: 13994

What aggregate weights did you get for these "duplicates"? How common or rare is "Michelle" in your data?
by ray.wurlod
Mon Sep 29, 2008 2:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: I am not able to fetch the data from ODBC stage,
Replies: 1
Views: 966

Did you bother to Search DSXchange before posting this question? This error has been posted a number of times in the past.
by ray.wurlod
Mon Sep 29, 2008 2:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling Routine though varibale
Replies: 2
Views: 1008

Yes.

You use "indirect call", which allows the value of the routine name to be loaded into a variable before the CALL statement is executed.

Find out more from the DataStage BASIC manual. You will also find examples if you Search DSXchange.
by ray.wurlod
Mon Sep 29, 2008 2:38 am
Forum: General
Topic: to trim 1th char
Replies: 4
Views: 1557

Not from me.

You want to write your own function then go ahead, it will encapsulate the expression logic I gave.

Whether or not U has any other ideas remains to be seen: U does not log in all that often.
by ray.wurlod
Mon Sep 29, 2008 2:36 am
Forum: Data Quality Best Practices
Topic: Data Matching: QualityStage vs Oracle’s Soundex
Replies: 5
Views: 13994

QualityStage does have Soundex, but you are not using it as your blocking columns. Did you intend to? Soundex is Soundex, no matter which vendor it comes from; the algorithm is in the public domain. NYSIIS is a more sophisticated algorithm than Soundex (primarily because it looks at more characters ...
by ray.wurlod
Mon Sep 29, 2008 12:40 am
Forum: General
Topic: Split a column
Replies: 6
Views: 2305

U did not ask the question. Deepa_Vaidyanathan did. Can you please explain how a Pivot stage (presumably alone, based on what you said) can be used to solve this particular problem, rather than simply assert?
by ray.wurlod
Mon Sep 29, 2008 12:38 am
Forum: General
Topic: to trim 1th char
Replies: 4
Views: 1557

Code: Select all

If Left(InLink.TheString,1) = "0" Then Right(InLink.TheString,6) Else InLink.TheString

What is to happen if the first character is non-zero? You did not include this in your specification.
by ray.wurlod
Sun Sep 28, 2008 11:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Searching a sequential file for a string
Replies: 3
Views: 1041

Use the UNIX command grep. DataStage installs with MKS Toolkit, so you have the full repertoire of UNIX commands available. If you must use DataStage, which is akin to using a sledgehammer to crack a walnut, simply use the Index() function in a Transformer stage to determine whether the string in wh...