Search found 53125 matches
- 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...
- Mon Sep 29, 2008 3:32 pm
- Forum: General
- Topic: Migrating DataStage resources...a sort of poll
- Replies: 20
- Views: 6344
- 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
- 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...
- 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
- 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
- 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.
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.
- Mon Sep 29, 2008 4:19 am
- Forum: Data Quality Best Practices
- Topic: Data Matching: QualityStage vs Oracle’s Soundex
- Replies: 5
- Views: 13994
- 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.
- 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.
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.
- Mon Sep 29, 2008 2:38 am
- Forum: General
- Topic: to trim 1th char
- Replies: 4
- Views: 1557
- 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 ...
- Mon Sep 29, 2008 12:40 am
- Forum: General
- Topic: Split a column
- Replies: 6
- Views: 2305
- 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.TheStringWhat is to happen if the first character is non-zero? You did not include this in your specification.
- 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...