Search found 53125 matches
- Mon Oct 22, 2007 2:24 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Error message "APT_BadAlloc: Heap allocation failed&quo
- Replies: 3
- Views: 2574
- Mon Oct 22, 2007 2:22 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Decimal data reading using sequential file stage
- Replies: 5
- Views: 5119
- Mon Oct 22, 2007 2:15 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to write Parallel Routine?
- Replies: 3
- Views: 3585
Design, write C++ routines, compile, link and test them without involving DataStage. In DataStage create new "parallel routines", which are entries in the Repository showing the location and number and type of arguments for your functions. Within a Transformer stage, call your routines from the DS R...
- Mon Oct 22, 2007 2:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: problem with date format
- Replies: 8
- Views: 2179
- Mon Oct 22, 2007 1:50 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Compare Next Value before insert into target
- Replies: 4
- Views: 2234
Not directly. There's no lookahead capability within the flow in DataStage. You can use stage variables in a Transformer stage to detect the first record in a group, then sort by the group keys then by that value in descending order, and then detect when that"key change column" was 1 in the previous...
- Mon Oct 22, 2007 1:36 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: XML all records in same file
- Replies: 6
- Views: 2138
As noted elsewhere, you do NOT hijack threads. Hijacking a resolved thread on a completely unrelated topic is totally counterproductive - it doesn't help you and it doesn't help future searchers. There is a button captioned "Post new topic" on the left of the button bar. Use it. That way we will kn...
- Mon Oct 22, 2007 1:24 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ODBC Connectivity problem
- Replies: 2
- Views: 1225
- Mon Oct 22, 2007 1:18 pm
- Forum: General
- Topic: How do I write out records when input has no eol char?
- Replies: 7
- Views: 1536
- Mon Oct 22, 2007 6:18 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: problem with date format
- Replies: 8
- Views: 2179
January through September, and the first nine days of each month.
I've just noticed that the job is designated as a server job. In that case the solution is easy.
I've just noticed that the job is designated as a server job. In that case the solution is easy.
Code: Select all
Oconv(Iconv(InLink.TheDate,"DMDY"),"D-YMD[4,2,2]")- Mon Oct 22, 2007 6:15 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: can update one row at a time.Help me pls
- Replies: 5
- Views: 3819
- Mon Oct 22, 2007 6:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: can update one row at a time.Help me pls
- Replies: 5
- Views: 3819
- Mon Oct 22, 2007 6:07 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: how to remove leading zeros for decimal values
- Replies: 5
- Views: 4478
Is this the same project as this post?
Leading zeroes are merely an artifact - they do not matter for data type Decimal.
Leading zeroes are merely an artifact - they do not matter for data type Decimal.
- Mon Oct 22, 2007 6:05 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: problem with date format
- Replies: 8
- Views: 2179
Firstly is the data type of your input field Date or some kind of string? Secondly, is it always a single digit for month and day, as the format string you've specified suggests? Only then can you start worrying about manipulating formats. Essentially you will need to convert to a string so you can ...
- Mon Oct 22, 2007 6:00 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Routine is not cataloged
- Replies: 13
- Views: 8469
Look at the VOC entry for ExecSH both in the project where it does not work and in one where it does.
Code: Select all
LIST.ITEM VOC WITH @ID LIKE "...ExecSH..."- Mon Oct 22, 2007 5:52 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: about scd
- Replies: 1
- Views: 978
The best place to learn about the design of slowly changing dimensions is in a book such as Data Warehouse Life Cycle and Toolkit by Ralph Kimball and others. Once you understand what needs to be done designing the algorithm is straightforward. It's even easier when you get version 8 with its Slowly...