Search found 53125 matches
- Wed Oct 23, 2013 1:17 pm
- Forum: General
- Topic: DataStage objects information into a relational table
- Replies: 4
- Views: 2658
This information should already be stored in relational form in the XMETA database. But it's painful to get out of there. You can get some of the information you require using DataStage API calls,and the remainder from various tables whose names begin with DS_ in the project itself. Search DSXchange...
- Wed Oct 23, 2013 1:13 pm
- Forum: General
- Topic: Errors on DS 8.7 Fix Pack 2
- Replies: 2
- Views: 2400
- Tue Oct 22, 2013 11:47 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Need a logic to implement in Datastage
- Replies: 9
- Views: 3240
- Tue Oct 22, 2013 11:47 pm
- Forum: General
- Topic: Unable to open DS clients when server firewall is enabled
- Replies: 5
- Views: 1921
- Tue Oct 22, 2013 11:45 pm
- Forum: General
- Topic: IBM InfoSphere MDM Standard Edition
- Replies: 1
- Views: 644
- Tue Oct 22, 2013 7:52 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Need a logic to implement in Datastage
- Replies: 9
- Views: 3240
- Tue Oct 22, 2013 7:50 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Functions in datastage
- Replies: 7
- Views: 2034
Seems to me you'll need something more like a Regular Expression to detect the presence of four contiguous occurances of the same letter in your data. This is do-able in DataStage if you have the Data Rules stage, which implies version 8.7FP1 or later and an Information Analyzer licence. One of the...
- Tue Oct 22, 2013 5:24 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Functions in datastage
- Replies: 7
- Views: 2034
Above Expression gives the position as 2 . Depends what's in InLink.TheColumn - which you did not indicate before making this assertion. Let me be clear with the requirement. If the column from the file has data NSAAAAI then the record is rejected since there is 4 consecutive A's in it. I did not r...
- Tue Oct 22, 2013 1:23 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Functions in datastage
- Replies: 7
- Views: 2034
- Tue Oct 22, 2013 1:19 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to design below job in DataStage?
- Replies: 2
- Views: 931
- Tue Oct 22, 2013 1:18 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to get the below scenario using DataStage?
- Replies: 2
- Views: 810
- Tue Oct 22, 2013 1:15 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Need a logic to implement in Datastage
- Replies: 9
- Views: 3240
- Tue Oct 22, 2013 1:14 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Conversion Error
- Replies: 3
- Views: 1164
- Tue Oct 22, 2013 2:04 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Web service invocation with huge volume of data
- Replies: 7
- Views: 2935
Someone or something has knocked out the conductor node - hence the status of Crashed. Did someone issue a kill -9 command? With no conductor with which to communicate, the section leaders will take some time to react to that situation. In the interim the player processes - those doing the actual wo...
- Mon Oct 21, 2013 3:24 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Sort stage or Link Sort
- Replies: 1
- Views: 841
Use an explicit Sort stage. Partition data by the sort key. The Sort stage allows you to allocate more memory than the default to the sorting operation, which means it takes longer before the sort has to spill to scratchdisk. You can control the default with an environment variable called APT_TSORT_...