Search found 53125 matches

by ray.wurlod
Fri Feb 16, 2007 11:01 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: orchdbutil - Documentation / escape character?
Replies: 3
Views: 3650

On a Windows machine I used the /? switch to get the following. On a UNIX machine try orchdbutil with -H or with no command line options at all. It's a start. D:\Ascential\DataStage\PXEngine\bin>orchdbutil /? ##I TFCN 000001 15:37:02(000) <main_program> Ascential DataStage(tm) Enterp...
by ray.wurlod
Fri Feb 16, 2007 7:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML - XLST
Replies: 3
Views: 1135

Etiquette Note Pushing like that is regarded as offensive here. People post as and when they can, and don't get paid for anything. If you are seeking specialized customized support - at weekend rates, mind you, since it's Saturday in most of the world - then please revert. Otherwise wait patiently ...
by ray.wurlod
Fri Feb 16, 2007 7:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can DS load data into a type 'varray' field in Oracle?
Replies: 4
Views: 1162

Orchestrate does support the concepts of arrays and subrecords (refer to Chapter 2 of Parallel Job Developer's Guide for a brief overview). As to whether these map correctly through the Oracle Enterprise stage I can not say, as I have not tried it. I suspect that version 7.5 of DataStage only offici...
by ray.wurlod
Fri Feb 16, 2007 7:30 pm
Forum: General
Topic: Problem while running Transformer Stage
Replies: 14
Views: 5571

For DataStage processes, in the dsenv script. For other processes, in the .profile script in their home directories.
by ray.wurlod
Fri Feb 16, 2007 7:27 pm
Forum: General
Topic: How to calculate the size of the text file
Replies: 19
Views: 11188

Why we need delimiter while calculating for Hashed files? 10+3+8+14=35 bytes per line \ For 15446662 records equates to 540633170 bytes You need the delimiter because it's in there (though it's a "field mark" in hashed files). By default hashed files are only filled to 80% of capacity, so your calc...
by ray.wurlod
Fri Feb 16, 2007 2:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File pattern warning in Sequential file
Replies: 9
Views: 1654

What triggers are on the Execute Command activity? The test command returns 1 if the test condition is not met. A pipeline such as that suggested by DSguru2B may be better, as the terminating command ( wc ) should always set its exit status to 0. You then need to test the command output (not its sta...
by ray.wurlod
Fri Feb 16, 2007 2:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: parameterize the job name in the Job Activity stage?
Replies: 5
Views: 1397

Why hide the logic, and make life difficult for future maintainers? Surely there can't be that many different jobs involved. Put your decision logic into a Nested Condition activity, and emplace specific Job activities for each of the jobs on the appropriate outputs (triggers) from the Nested Condit...
by ray.wurlod
Fri Feb 16, 2007 2:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error with shared container
Replies: 1
Views: 1353

Some people like mysteries, but not us. Please post how you resolved this issue, the better to assist future searchers who are trying to solve the same question.
by ray.wurlod
Fri Feb 16, 2007 2:34 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Field Null Value Property not visible
Replies: 9
Views: 2674

Null Field Value is only displayed if the field is nullable.

If the field is nullable, but the Null Field Value property has not been selected, it is to be found in the "available properties to add" list.
by ray.wurlod
Fri Feb 16, 2007 2:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: bad performance
Replies: 8
Views: 1350

Parallel jobs cosume far more resources than server jobs; these may be starving the server jobs of resources. Have you considered this design in a job sequence? Job1 -----+ | +---> Job4 Job2 -----+---> Sequencer ---+ | (all) +---> Job5 Job3 -----+ Or even: Job1 -----+ | Job2 -----+---> Seque...
by ray.wurlod
Fri Feb 16, 2007 2:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: merge stage with container as an input
Replies: 2
Views: 649

Inputs can come from any source. But do you have a join key? You may need to generate one on one or both inputs (perhaps the row number). Join stage inputs need to be compatibly key partitioned and sorted.
by ray.wurlod
Fri Feb 16, 2007 2:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem to convert the amount field from currency to decimal
Replies: 11
Views: 5683

What's the largest size of the number in the source, and what's the maximum length of the ustring? It may be from the combination of the two that DataStage is generating the warning. For example, Decimal(10,2) will not fit in ustring[10] (character places are needed for the decimal place and optiona...
by ray.wurlod
Fri Feb 16, 2007 2:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oci 8stage
Replies: 1
Views: 567

When you can not do it is when you're writing the same records, since these will be locked by the SELECT process. What you can do is to stage the records somewhere intermediate (a text file will do) so that the SELECT completes before the write process is asked to begin.
by ray.wurlod
Fri Feb 16, 2007 2:11 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: problem with look up
Replies: 1
Views: 558

Use a stage variable to store the value from the previous row. You can search the forum for myriad examples of this technique. With that available for reliable change detection you can have another stage variable for the level, which is reset when a change is detected and on input row #1 and increme...
by ray.wurlod
Fri Feb 16, 2007 2:03 pm
Forum: General
Topic: Problem while running Transformer Stage
Replies: 14
Views: 5571

"Failed to load library" is most usually a run-time error indicating a deficiency in the shared library search path (environment variable LD_LIBRARY_PATH, LIBPATH or SHLIB_PATH, depending on your operating system). This should be adjusted to include the parent directory of the library containing the...