Search found 15603 matches

by ArndW
Mon Jun 07, 2010 2:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: waitForWriteSignal(): Premature EOF Error
Replies: 10
Views: 9696

You should check your database DDL, not (only) the DataStage definition.
by ArndW
Mon Jun 07, 2010 2:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sparse look up
Replies: 5
Views: 2051

Yes (normal lookup loaded into RAM)
Yes (specify normal or sparse lookup in the source DB stage)
by ArndW
Mon Jun 07, 2010 2:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: waitForWriteSignal(): Premature EOF Error
Replies: 10
Views: 9696

I would fix the nullability issue first. Your "field1" is declared as nullable in your database - check your table DDL to confirm. Once you handle the null then you can attack the second problem, if it still exists.
by ArndW
Mon Jun 07, 2010 2:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abort if the source table has zero records
Replies: 3
Views: 1309

The short answer is that you cannot check the row count for 0 in the transform stage, as processing doesn't go there. There are several methods commonly used to do this, but this depends upon the nature and type of your source data. With database tables as sources, an external "SELECT COUNT(*)&...
by ArndW
Mon Jun 07, 2010 1:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sparse look up
Replies: 5
Views: 2051

A "normal" lookup will read all of the reference data into memory to speed up subsequent lookups. A "sparse" lookup will perform a read of the reference for each data row. The latter is best when there are a large number of reference rows and just a few data rows, or where the re...
by ArndW
Fri Jun 04, 2010 4:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting this error when installing patches-Urgent help
Replies: 2
Views: 936

From the path information, this is in the server side of the product, not the client side; I am assuming that both are on the same machine. I don't know the Windows command to see which process has a given program or library open, but one option might be to stop the DataStage server prior to install...
by ArndW
Fri Jun 04, 2010 4:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Limitation of the number of parameters
Replies: 11
Views: 3040

If "getconf ARG_MAX" doesn't work, please tell us your shell and UNIX type.
by ArndW
Fri Jun 04, 2010 4:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: can anyone throw some light on standalone.sh
Replies: 2
Views: 1134

Right at the top of the code are the comments

Code: Select all

# This script will configure the library path properly so that
# a dynamically linked standalone can run property when rsh'ed
# to another system.
by ArndW
Wed Jun 02, 2010 4:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Stage variable not to be partitioned
Replies: 3
Views: 1149

Each partition is only aware of its own data, so there will be 4 stage variables on a 4-node configuration. You can get a unique number by using the following derivation:

svUniqueNumber = @PARTITIONNUM + ( @NUMPARTITIONS * ( @INROWNUM -1 ) ) + 1
by ArndW
Wed Jun 02, 2010 4:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to view data in director when target is peak
Replies: 3
Views: 1160

There will be an entry in the director log after running the job for the PEEK stage, double-click on that to see the data for the stage.
by ArndW
Wed Jun 02, 2010 4:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Disable RCP in DS Administration Client
Replies: 3
Views: 1306

I've used RCP quite a bit and for such things as generic containes and jobs it is a powerful and useful tool. I keep that checkbox turned off and then explicitly set RCP on for those jobs/stages where I use it to avoid the confusion that you've mentioned - which is not limited to beginners.
by ArndW
Wed Jun 02, 2010 2:36 am
Forum: General
Topic: seq.nextval in select statement of an Oracle eneterprise.
Replies: 5
Views: 1871

You probably have a parallel configuration file with 2 nodes.
by ArndW
Wed Jun 02, 2010 2:30 am
Forum: General
Topic: Sorting not working
Replies: 8
Views: 2706

Perhaps you have RCP enabled on the transform stage output, thus implicitly passing the column on.
by ArndW
Wed Jun 02, 2010 2:23 am
Forum: General
Topic: seq.nextval in select statement of an Oracle eneterprise.
Replies: 5
Views: 1871

Please post your query, that would assist in any debugging.
by ArndW
Wed Jun 02, 2010 2:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to schedule job or sequence in unix
Replies: 5
Views: 2431

The command you would need to use from cron is dsjob, the options are detailed in the documentation.