Search found 53125 matches

by ray.wurlod
Tue Jun 03, 2008 12:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Identification of a rejected row
Replies: 5
Views: 1093

What stage type are you using? What defines "rejected"?
by ray.wurlod
Tue Jun 03, 2008 12:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String Compare
Replies: 3
Views: 902

Assuming ASCII or equivalent: all characters whose code is below 32 characters in the range "A" through "Z" (assuming you want to keep only lower case alphabetics) all characters whose code is above 128 You can be somewhat selective in the first and last of these if you know, for example, that Ctrl-...
by ray.wurlod
Tue Jun 03, 2008 12:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequencer issue
Replies: 30
Views: 8541

If all checkpoints are removed at the end, isn't meaning that the controller adds checkpoints(as flow successfully validated) for all activties, unless Job3 is aborted? No. Checkpoints are only added for all activities that do not fail, unless the activity is marked "do not checkpoint run". Therefo...
by ray.wurlod
Mon Jun 02, 2008 10:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String Compare
Replies: 3
Views: 902

Initialize a stage variable with a string containing every other character and another containing the number of spaces that there are characters in the first. Use a Convert() function to map from one to the other.
by ray.wurlod
Mon Jun 02, 2008 10:23 pm
Forum: General
Topic: bulk select/insert
Replies: 3
Views: 1090

Not as directly as you would like. Depending on the actual database some degree of prefetch buffering and in-process row buffering may be possible. Also depending on the actual database you may be able to invoke its export facility to bulk unload the data as the Filter command of a Sequential File s...
by ray.wurlod
Mon Jun 02, 2008 10:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Orchdbutil
Replies: 2
Views: 1234

Are the DB2 environment variables, such as DB2INSTANCE, set for the user you are using to execute the orchdbutil command? Have you executed the dsenv script?
by ray.wurlod
Mon Jun 02, 2008 10:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Environment variable transporter
Replies: 13
Views: 5105

Would you be surprised if there isn't?
by ray.wurlod
Mon Jun 02, 2008 10:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to View Data. -- NLS Enabled
Replies: 13
Views: 5111

You can load it quite happily. What you can't do is view it with View Data. But you can view it with TOAD, sqlplus and the like.
by ray.wurlod
Mon Jun 02, 2008 10:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic handling metadata
Replies: 13
Views: 3447

There should be no difference in the process based upon job type.

Only design-time components are exported - parallelism is not determined until run-time in parallel jobs.
by ray.wurlod
Mon Jun 02, 2008 8:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: APT_CONFIG_FILE NODES setup
Replies: 1
Views: 910

The main factor is the available processing resources (CPU, memory, disk space, network bandwidth). The next is the volume of data to be processed. In an ideal world a job with N nodes will process data in 1/N the time needed by one node. Provided, of course, that the hardware and operating system o...
by ray.wurlod
Mon Jun 02, 2008 8:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to View Data. -- NLS Enabled
Replies: 13
Views: 5111

You can read it with any text viewer/editor.

With no commercial relationship I recommend UltraEdit, which can FTP the file to your client machine for viewing.
by ray.wurlod
Mon Jun 02, 2008 8:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Splitting Pipe delimited file
Replies: 7
Views: 2997

Please mark this thread as Resolved.
by ray.wurlod
Mon Jun 02, 2008 8:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Splitting Pipe delimited file
Replies: 7
Views: 2997

It worked because they are not null. "" is not the same thing as null. We know that "" is a string and that it contains precisely zero characters. Null means that we do not know what the value is. Null is not possible in a text file; only a "representation of null" is possible. This is because a tex...
by ray.wurlod
Mon Jun 02, 2008 7:33 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File Rename and Waiting
Replies: 5
Views: 1572

Use the formatting tool in the code editor to make the End statements' dependencies easier to see.
by ray.wurlod
Mon Jun 02, 2008 7:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Not able to View Data. -- NLS Enabled
Replies: 13
Views: 5111

The Importer's Preview does not use osh - it is quite different from View Data in parallel jobs, so this result does not really come as a surprise.