Search found 53125 matches

by ray.wurlod
Tue Oct 04, 2005 11:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multi lines --> single line ?
Replies: 8
Views: 2072

I believe a more generic solution is needed, Gokul. For example

AA 1
BB 1
CC 1
AA 2
BB 2
CC 2

should yield

AA BB CC 1
AA BB CC 2

Your approach does not handle this; it can only ever generate one output row.
by ray.wurlod
Tue Oct 04, 2005 11:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can routines be written in C in 7.5
Replies: 3
Views: 1112

That question is best answered, at least initially, by you reading the Parallel Job Developer's Guide (parjdev.pdf), especially the sections on Custom stages.
by ray.wurlod
Tue Oct 04, 2005 11:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Allow duplicate values in Lookup properties
Replies: 5
Views: 1949

Welcome aboard! :D

Of course you can set this property. But consider carefully what the implications are. If you used DISTINCT in your extraction query and you are getting warnings about duplicate values, doesn't that ring any alarm bells at all?
by ray.wurlod
Tue Oct 04, 2005 11:38 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: multi lines --> single line ?
Replies: 8
Views: 2072

What you are asking for is a vertical pivot. The Pivot stage performs horizontal pivot (one line to many), but definitely does not perform vertical pivots. Several techniques are available, depending on exact circumstances. For example is there a small, finite number of columns to be generated in ea...
by ray.wurlod
Tue Oct 04, 2005 11:36 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with environment setting
Replies: 1
Views: 1068

1. Your system is overloaded. You are asking it to do too much. Also, you're probably reacting to single snapshot - every process takes it in turn to sleep awaiting its turn on the CPU, if it's not waiting for something else such as disk I/O requests. In fact, there can be no more than N processes a...
by ray.wurlod
Tue Oct 04, 2005 11:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: filter stage
Replies: 3
Views: 1273

Use a Switch stage.
by ray.wurlod
Tue Oct 04, 2005 11:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: single source record need load two records in the target
Replies: 10
Views: 2990

Nothing, except maybe an abort.

Operating system rules prohibit more than one writer to a sequential file.
by ray.wurlod
Tue Oct 04, 2005 11:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Max Value in date column
Replies: 10
Views: 4662

Why can't you just get the max of the string[10] field? You can do it in SQL, so you should be able to do it in an Aggregator stage. Dates in ISO 8601 format - which this is - sort properly, at least in the year range 1AD through 9999AD.
by ray.wurlod
Tue Oct 04, 2005 4:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Installation of DS.
Replies: 7
Views: 2315

The clients do not run on UNIX. You have specified that you have a UNIX-based server. There is no way the same machine can run both UNIX and Windows at the same time. That is why you need different machines. The only exception is if you are running DataStage on Windows (which you specified you are n...
by ray.wurlod
Tue Oct 04, 2005 4:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Help with Delimited, required_column_missing problem
Replies: 4
Views: 1310

The metadata must be the same (including the additional column) on both the input to and the output from the Sequential File stage. Your SQL must deliver exactly the same number of columns as are specified on the output link from the ODBC stage. There's some good material in on-line help; next time ...
by ray.wurlod
Tue Oct 04, 2005 4:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Installation of DS.
Replies: 7
Views: 2315

Depending on which variant of UNIX you are using, you will need to change some kernel parameters. This is documented for your particular platform in the installation guide and in the readme file that ships with the software.
by ray.wurlod
Tue Oct 04, 2005 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Installation of DS.
Replies: 7
Views: 2315

Different.

You specified UNIX. The clients only run on Windows.

Please clarify your concept of "constraints".
by ray.wurlod
Tue Oct 04, 2005 4:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Email Notification activity
Replies: 9
Views: 2580

"/n" would never work, you need "\n".

If that's no good, you can try @FM or @VM system variables, or explicitly incorporate Char(10).
by ray.wurlod
Tue Oct 04, 2005 4:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Termination-add_to_heap() Unable to allocate memory
Replies: 10
Views: 4029

Maybe there are enough rows in production to exceed the hashed file cache size limit (default 128MB) but not in development or test environments?

Try increasing the read and write cache sizes in production, using Administrator client, Tunables tab.
by ray.wurlod
Tue Oct 04, 2005 4:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compiling jobs in datastage 6x
Replies: 16
Views: 4355

Please start a new thread. There is an answer - we can post it on the new thread. Specify exactly what your client wants - if you don't know, force your client to clarify.