Search found 53125 matches

by ray.wurlod
Fri Jun 23, 2006 3:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: writing log file after aborting job
Replies: 2
Views: 937

Split the job so that rows are written to a staging area (text files) by one job, then loaded (server job?) from those. That way you have preserved the data to be loaded even in cases where you need to rollback. You can monitor the load in your load job so that, if you want to restart from a known p...
by ray.wurlod
Fri Jun 23, 2006 3:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing DB from DS routine
Replies: 6
Views: 1384

Check out the prices of ODBC drivers from Data Direct then post back if you still want to persist with this approach.
by ray.wurlod
Fri Jun 23, 2006 1:05 am
Forum: Site/Forum
Topic: Australia/New Zealand User Group
Replies: 4
Views: 2333

Australia/New Zealand User Group

We're thinking about adding an Australia New Zealand user group to DSXchange. If you are based in Australia or New Zealand and we can't determine this from your profile, please respond to this post, indicating in which city you are working. You never know, it may lead to beer!
by ray.wurlod
Fri Jun 23, 2006 12:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extracting data from IMS Database - Mainframe
Replies: 4
Views: 2792

Better than that, why not read all about it in the help? The IMS components give you the ability to access IMS databases and viewsets and to import table definitions from IMS definitions. You get an IMS stage type once IMS is licensed. Open designer help (C:\Program Files\Ascential\DataStage\dsdesig...
by ray.wurlod
Fri Jun 23, 2006 12:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2/UDB Load Issues
Replies: 4
Views: 1857

Or does it mean that DB Connect v8 can not send correct commands to DB2/390 v7 (version mismatch), or does it mean that DB2/390 and DB2/UDB are different beasts?
by ray.wurlod
Fri Jun 23, 2006 12:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Converting Varchar to Decimal
Replies: 2
Views: 1739

Check the Format tab of your Sequential File stage. If the "null representation" field is empty, "" ought to be translated to null. Also check the Columns grid in case the null representation has been overridden on a per-column basis - you will need to scroll right to find this setting. Otherwise, i...
by ray.wurlod
Fri Jun 23, 2006 12:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to export DS Project
Replies: 6
Views: 1885

Your subject was "unable to export", not import. Re-indexing the Repository database makes the export utility more likely to be able to find all the components. To import a successfully exported project into a different project ought not to require any re-indexing, unless that project also had a cor...
by ray.wurlod
Fri Jun 23, 2006 12:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extracting data from IMS Database - Mainframe
Replies: 4
Views: 2792

Yes, but you will need to install/license the IMS components of DataStage. Contact your vendor for pricing.
by ray.wurlod
Fri Jun 23, 2006 12:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator Issues
Replies: 6
Views: 2794

Not if you want/require int64. Even with decimal_from_decimal, if the target is a smaller size than the source, DataStage will generate a warning.
by ray.wurlod
Thu Jun 22, 2006 2:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ETL Structure
Replies: 12
Views: 3479

In star schema terminology, do the snowflakes first, then the dimensions, and finally the fact tables.
by ray.wurlod
Thu Jun 22, 2006 2:06 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Improve performance from Oracle source to Orace target.
Replies: 7
Views: 1311

The best Oracle to Oracle performance is usually to be had from not using DataStage. Every layer of software in the picture adds resource consumption. However, if the transformation rules are sufficiently complex, the argument for using DataStage becomes more compelling - there is a limit to what ki...
by ray.wurlod
Thu Jun 22, 2006 2:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: View
Replies: 3
Views: 733

If the view is defined with WHERE Table1.ID = Table2.ID then you don't need that particular WHERE clause in a SELECT from the view - indeed, it would generate an error.
by ray.wurlod
Thu Jun 22, 2006 2:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Control fatal error (-14)
Replies: 25
Views: 13418

Additional Suggestions: Disable any screen saver on the Windows server. Verify that the firewall and/or anti-virus software is not imposing too great an impact on startup times for executables. Verify that the Windows server is not being used as either a primary or backup domain controller. Monitor ...
by ray.wurlod
Thu Jun 22, 2006 1:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file corruption - Failed Writes
Replies: 8
Views: 1905

Only load into the hashed file those columns - and indeed those rows - that will actually be needed in the job. This will help in a number of ways. First, you are not doing unnecessary work moving these data into the hashed file. Second, you are keeping the average record size in the hashed file sma...
by ray.wurlod
Thu Jun 22, 2006 1:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generate a Sequential file with a header and footer??
Replies: 14
Views: 3418

You could also use ExecSH (or your own routine) as a before-job subroutine to echo the header into the file, append detail records in the job and use ExecSH (or your own routine) as an after-job subroutine to append the trailer using echo and the >> redirection operator.