Search found 3045 matches
- Mon Jul 31, 2006 3:51 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage on Windows 2003 and VM
- Replies: 10
- Views: 7798
I also agree that vmware is not for a production ETL server. It is fantastic for maintaining portable training and evaluation environments. On a Windows server your RAM and CPU power gets divided between the host and the vmware session so you never really get 100% of the resources on the box for you...
- Mon Jul 31, 2006 7:47 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: DB2 EE stage - rows getting rejected
- Replies: 11
- Views: 2490
To quickly see the rejection error message add a peek stage to your job with a reject link out of your EE database stage. Within the DB stage set the "Reject" optional property to true, you should be able to find it somewhere in the properties list. Re-run your job. The sql code and sql error code s...
- Sat Jul 29, 2006 3:36 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: rejected records
- Replies: 16
- Views: 6142
This is quite common when you put a transformer after a join or lookup stage. You end up running a transformation function against a reference field that can be null. You need to put null handling around any transformer field that might contain a null and requires some type of transformation change ...
- Thu Jul 27, 2006 5:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DS Hawk installation - ServiceException
- Replies: 4
- Views: 2250
- Fri Jul 21, 2006 5:39 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: conditional lookup
- Replies: 7
- Views: 1367
Try this: read your reference table and send it to a copy stage, have three output links to a lookup stage. Each link has a different key field: cnum, pnum and qnum. In the lookup stage link your input stream to all three lookups. In your output mapping take the lookup fields from one of the three l...
- Wed Jul 19, 2006 5:09 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Folder stage equivalent in PX
- Replies: 8
- Views: 5233
- Wed Jul 19, 2006 5:07 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: can be put DS Job Sequence in Shared container
- Replies: 3
- Views: 853
- Tue Jul 18, 2006 5:58 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Difference between Server and Enterprise Edition
- Replies: 11
- Views: 2148
A very good point. If you look at Google Trends for the last two years the top 10 cities doing a Google search for the term "DataStage" since 2004 are: 1. Pune, India 2. Bangalore, India 3. Hyderabad, India 4. Chennai, India 5. Mumbai, India 6. Singapore, Singapore 7. New Delhi, India 8. Minneapolis...
- Mon Jul 17, 2006 5:14 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: ceritification details on DataStage
- Replies: 6
- Views: 2484
I have put most of the DataStage Certification links I could find over on a squidoo lens: http://www.squidoo.com/datastage
You can also do a Google search for "Datastage certification" where you will find the first two results are my certification blogs, the next two are my certification wiki pages followed by IBM links.
You can also do a Google search for "Datastage certification" where you will find the first two results are my certification blogs, the next two are my certification wiki pages followed by IBM links.
- Sun Jul 16, 2006 6:52 pm
- Forum: Data Integration
- Topic: Handling SCD with SSIS
- Replies: 3
- Views: 9485
I have noticed that SSIS bloggers tend to outnumber DataStage and Informatica bloggers by about 10 to 1 and they are often coming from an established network of SQL Server code cutters. They have some very detailed discussions on things like SCDs, balancing between ETL and ELT and surrogate key gene...
- Fri Jul 14, 2006 5:27 am
- Forum: Site/Forum
- Topic: Ascential DeveloperNet sunsetting this month
- Replies: 20
- Views: 10678
- Thu Jul 13, 2006 6:34 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Extended Edition
- Replies: 5
- Views: 2035
The installation requirements and learning curve of MetaStage has put up a formidable barrier for a lot of ETL projects. IBM-Ascential are addressing this in the next release (version 8 or Hawk) where a lot of the MetaStage functions have been moved onto the DataStage Designer and given a better GUI...
- Thu Jul 13, 2006 6:27 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: any strategy whether to go for parallel job or server job
- Replies: 4
- Views: 1211
Parallel jobs are faster on large volumes of data via all the parallel partitioning capabilities, they are also faster with sorting and aggregation functions even when compared in a non-parallel mode. The C++ stages of parallel jobs seem to be more efficient. However parallel jobs have a slower star...
- Fri Jul 07, 2006 1:05 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to use CFF to unpack the packed data from Mainframe sys
- Replies: 2
- Views: 884
You need a copybook that defines the structure of the file, you then use the CFF importer to read this copybook and turn it into a complex flat file table definition. The data can then be read by the CFF stage and the complex structure flattened into a relational structure. Unpacking of fields will ...
- Wed Jul 05, 2006 4:05 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Difference between Transformer Stage and all other stage
- Replies: 7
- Views: 5054
As I said in Is the DataStage parallel transformer evil? the benefits of the transformer stage far outweigh any time overhead. I would always design with transformers and switch them later if extra performance is required. There was some bad press about transformers a couple ascentialworlds ago and ...