Search found 3045 matches
- Fri Nov 18, 2005 3:35 pm
- Forum: IBM QualityStage
- Topic: Can QS MATCH be Run in Parallel Mode
- Replies: 3
- Views: 2370
You can use DataStage to provide both the primary input and the reference input into a QualityStage plugin that is doing matching. The safest design would be to sort and partition the primary input and set the partitioning of the reference data as entire. I doubt there is any partitioning method oth...
- Fri Nov 18, 2005 3:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Remove duplicate Error
- Replies: 2
- Views: 764
- Fri Nov 18, 2005 2:56 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: PX Aggregator Stage(Last & First Values)
- Replies: 5
- Views: 1705
- Fri Nov 18, 2005 3:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Setting environment variable
- Replies: 3
- Views: 983
- Fri Nov 18, 2005 2:08 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DS 7.5 EE Solaris to DS 7.5 EE windows
- Replies: 2
- Views: 844
- Thu Nov 17, 2005 9:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: KeyMgtGetNextValueConcurrent(), Server Container, PX Job
- Replies: 6
- Views: 1854
If you dont need the key value elsewhere in your etl process and only care that it is a unique value then you should consider using a trigger on the table into which you are inserting the data... Trigger surrogate key generators are getting the cold shoulder nowadays, too much overhead on bulk inse...
- Thu Nov 17, 2005 9:47 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: error while viewing the data
- Replies: 4
- Views: 1145
- Thu Nov 17, 2005 8:38 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: KeyMgtGetNextValueConcurrent(), Server Container, PX Job
- Replies: 6
- Views: 1854
I agree, ranges are bad, you pass in the start value in one of two ways, either as a job parameter into the job (where it is retrieved via an operating system script) or via a lookup stage to the target table (as a max select). The start value can then be set in the surrogate key stage start value p...
- Thu Nov 17, 2005 4:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Max Lookups
- Replies: 3
- Views: 906
- Thu Nov 17, 2005 4:07 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Extract data from HTML document.
- Replies: 2
- Views: 863
It's almost structured data if the file always has the same set of fields and you don't need to break down the data inside fields. Read it as a sequential file with a seperator of : and change the end of record character to something different so it reads all rows in a record as one record. You may ...
- Thu Nov 17, 2005 3:54 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: KeyMgtGetNextValueConcurrent(), Server Container, PX Job
- Replies: 6
- Views: 1854
- Thu Nov 17, 2005 3:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: documentation of engine command
- Replies: 4
- Views: 1205
It can be hard to find database products other then DB2 on the IBM website, there is a Universe link in the DataStage information FAQ:
http://www.dsxchange.com/viewtopic.php?t=88590
http://www.dsxchange.com/viewtopic.php?t=88590
- Wed Nov 16, 2005 10:15 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Repository in version control
- Replies: 8
- Views: 5535
Has anyone tried using DSJOB against the VERSION project? For example dsjob -ljobs VERSION. This might give you a list of all job names without much hassle. You could use any of the DataStage job reporting options listed in the related FAQ such as exporting VERSION to an XML export file and running ...
- Tue Nov 15, 2005 11:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Job Seq Problem
- Replies: 2
- Views: 789
- Tue Nov 15, 2005 11:46 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: logic to create multiple outputs and combine them
- Replies: 3
- Views: 1210
This is one crazy job. The transform and funnel look wrong. You should be able to write this job with just a lookup stage and retrieve whatever country values you need from that lookup. Why do you have 105 output links? The lookup stage has a multiple lookup matches option that lets you return multi...