Search found 53125 matches

by ray.wurlod
Fri Apr 04, 2008 3:36 am
Forum: Data Integration
Topic: naming standards for jobs,routines,shellscrpit
Replies: 2
Views: 9398

We would be happy, on a commercial basis, to analyze what your system requirements are and to recommend naming and other conventions based upon those findings. There is no "one size fits all" solution.
by ray.wurlod
Fri Apr 04, 2008 2:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to minimise the output?
Replies: 7
Views: 1439

You could wrap that SQL in another SELECT statement to form the MIN and MAX of XX_MA_DT.

You could use an Aggregator stage to form the MIN and MAX.

You could use stage variables in a Transformer stage.

There's three ways, just off the top of my head.
by ray.wurlod
Fri Apr 04, 2008 2:37 am
Forum: Data Integration
Topic: naming stadards and good practises for creating jobs
Replies: 2
Views: 9589

The nice thing about standards is that there are so many to choose from.

For example, UNIX began life as a standard. So did SQL.
by ray.wurlod
Fri Apr 04, 2008 1:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence getting aborted due to Heap allocation failed.
Replies: 4
Views: 1730

Searching the forum for "heap allocation failed" (exact match) could prove illuminating.
by ray.wurlod
Fri Apr 04, 2008 1:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to access Project.
Replies: 1
Views: 955

What has changed? ("Nothing" is not the correct answer. Clearly.)

Who has been fiddling with the project either at operating system level or TCL level? Find out what they did, and remedy it.
by ray.wurlod
Fri Apr 04, 2008 1:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to minimise the output?
Replies: 7
Views: 1439

Can you specify MIN(TheDate) and MAX(TheDate) in your extraction SQL?
by ray.wurlod
Fri Apr 04, 2008 12:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Extracting Data from Lotus Notes
Replies: 2
Views: 1416

The simple answer is No. Get an ODBC driver for Lotus Notes. Even then it's not the easiest thing in the world to configure. An alternative strategy is to have some external process dump whatever it is you need from Lotus Notes into a text file format of some kind, and process that with DataStage.
by ray.wurlod
Fri Apr 04, 2008 12:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Commit Size in DB2 Bulk Load Stage ?
Replies: 8
Views: 4474

Good catch - I was thinking transactional, and neglected consistency save points.
by ray.wurlod
Fri Apr 04, 2008 12:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: query on vertical pivot
Replies: 7
Views: 2698

If the data are sorted on the grouping keys, and the Aggregator stage is informed of this fact, then the volumes are irrelevant - the stage can output a row (and free the memory associated with it) each time a sorted grouping key changes value - the sorting means that that value will never be seen a...
by ray.wurlod
Thu Apr 03, 2008 11:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding oracle error with indexes enabled
Replies: 8
Views: 5883

It's an Oracle restriction - nothing to do with DataStage. You have to specify (in DataStage) how to manage the indexes - you have two choices, essentially deferred update or drop and re-build.

This is well documented in the stage chapter in the Parallel Job Developer's Guide
by ray.wurlod
Thu Apr 03, 2008 11:11 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: routine or stage
Replies: 2
Views: 1555

All those comparisons can readily be performed in a parallel Transformer stage. Use stage variables to avoid unnecessary repetition of calculations and comparisons.
by ray.wurlod
Thu Apr 03, 2008 11:09 pm
Forum: General
Topic: NULL conception in Sequential File Stage
Replies: 2
Views: 2486

Read some more in Chapter 2 and 3 about data types. VarChar is stored with a prefix (an n-byte integer containing the actual length of the string part). You can see this in record schemas, for example string[max=255] {prefix=2} This indicates that a two-byte integer (actually a uint16) is ...
by ray.wurlod
Thu Apr 03, 2008 9:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to create a dummy xml file
Replies: 4
Views: 1231

:idea:
If you want to create a dummy file, then XML for Dummies is probably the best reference to consult!

:lol:
by ray.wurlod
Thu Apr 03, 2008 9:13 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Server Architecture
Replies: 31
Views: 8455

Until and unless "they" find another mechanism than DSD.RUN to start parallel jobs, I can not agree.
by ray.wurlod
Thu Apr 03, 2008 9:12 pm
Forum: General
Topic: NULL conception in Sequential File Stage
Replies: 2
Views: 2486

Parallel Job Developer's Guide (version 7.5) page 3-33

It took less than a minute to search.
:roll: