Search found 3045 matches

by vmcburney
Thu Feb 01, 2007 5:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage V 8.0 Upgrade
Replies: 15
Views: 4960

Great thread Sean, thanks for sharing your experiences and providing the resolution.
by vmcburney
Thu Feb 01, 2007 4:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Looking for Parallel Extender Developer PDF Guide
Replies: 26
Views: 7360

Izack wrote:
swades wrote:I am help less............Thanks for your help

Quote of the day.

There is a manual in the Information Server documentation called Parallel Engine Message Reference that describes errors with explanations and solutions. Looks like they haven't put it online.
by vmcburney
Thu Feb 01, 2007 2:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Daily DataStage Job Run Reporting
Replies: 6
Views: 2050

ETLStats has the SQL in it you can use to get to the process metadata. It also has a couple of jobs you can use to run the SQL and extract the results to a file or table.
by vmcburney
Thu Feb 01, 2007 2:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CRC32 in PX
Replies: 15
Views: 5005

I only ever use the Change Data Capture stage and ignore the other two stages. I think the CDC stage was developed as an improvement to the Difference stage though I don't know where I originally read this.
by vmcburney
Thu Feb 01, 2007 4:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Looking for Parallel Extender Developer PDF Guide
Replies: 26
Views: 7360

All th eDataStage 8 documents are at the Product documentation ibm website including tutorials for DataStage parallel jobs and QualityStage version 8. There is not a huge difference between DataStage 7 and 8. You might be able to navigate the ibm website to find the version 7 manuals.
by vmcburney
Wed Jan 31, 2007 11:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading file with variable record length
Replies: 13
Views: 4561

I've been trying to do the same thing with the CFF stage and if you don't have a cobol definition file it is difficult. The direct data entry of metadata into the CFF stage seems to be almost impossible, I keep getting errors on level numbers. It may be easier to try Arnd's approach of dummying up a...
by vmcburney
Wed Jan 31, 2007 3:02 pm
Forum: Data Integration
Topic: SAP connectivity in Datastage EE
Replies: 2
Views: 11785

DataStage 8 comes with the following access via the SAP Packs (at an additional cost): SAP BW Pack BAPI: (Staging Business API) loads from any source to BW. OpenHub: extract data from BW. SAP R/3 Pack ABAP: (Advanced Business Application Processing) eliminates manual coding and provides change data ...
by vmcburney
Tue Jan 30, 2007 6:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Migration & Version Control
Replies: 16
Views: 6198

Version Control has been dumped from DataStage 8 however the import/export functions have been improved and are in some ways better than the old VC functions. It is easier to build, add to, search, filter or view an export file under DataStage 8. So you could build release files under version 8 and ...
by vmcburney
Mon Jan 29, 2007 8:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to make the whole job as a transaction ?
Replies: 3
Views: 864

The bulk load stage may give you what you want. Hard to do with upsert/insert/update type loads because you need to do it all in one very big transaction. Not really scalable.
by vmcburney
Mon Jan 29, 2007 3:58 pm
Forum:
Topic: Import Meta Data into MetaStage from ERwin r7, Cognos 8
Replies: 8
Views: 3176

It may be possible to export an ErWin model as XML and import that into MetaStage. A colleague almost got this working but there was one data type in the XML file that MetaStage couldn't handle. He thought you might be able to make an minor adjustment to the XML through Perl to get it into MetaStage.
by vmcburney
Sun Jan 28, 2007 8:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Logic
Replies: 3
Views: 1209

It gets a bit ugly when you try and do it in a parallel job. A lookup stage would allow multiple lookups to be returned and give you every possible combination for that key. A filter stage would remove all the rows where the lookup date was too high. A sort or remove duplicates row sorted by date re...
by vmcburney
Sun Jan 28, 2007 6:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Best parcatices for business logic
Replies: 3
Views: 866

I would first try to build it using a lookup table, though this depends on whether the equation fits a lookup table design. Second I would try stage variable code which works well for up to three lines of code per stage variable but is stretched beyond that. Third is probably external routine so you...
by vmcburney
Sun Jan 28, 2007 6:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage V8.0 upgrade on SQL Server
Replies: 3
Views: 1205

I'm not sure what install you are running or whether you did the first step of the install wizard incorrectly. When I run the Info Server install.exe I get a wizard where the first form is a warning about disabling the firewall and the second form labeled "IBM Information Server Layers" has check bo...
by vmcburney
Sun Jan 28, 2007 5:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Change Data Capture
Replies: 22
Views: 5045

I would be surprised if anything in an ETL tool could match the performance and efficiency of a native Sybase replication tool for the straight replication of data. ETL really comes into its own when you are using the "T" in ETL. If you are doing straight CDC with no transformation/consolidation/cle...
by vmcburney
Wed Jan 24, 2007 5:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: One DataStage Server is going to die
Replies: 18
Views: 6779

Some sorting and aggregation may go into your temp directory. Most datasets will be saved onto your node directories as defined in your configuration file. Your machine may have a lot of disk space but you need to make sure it is allocated correctly. Disk space monitoring during a test run will tell...