Search found 53125 matches

by ray.wurlod
Wed Jan 24, 2007 1:44 pm
Forum: General
Topic: count the records in stage
Replies: 4
Views: 2229

In a server job you can add a fourth stage, to dispose of the count (for example a Sequential File stage). You can form the count in an Aggregator stage.
by ray.wurlod
Wed Jan 24, 2007 1:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 Stages in PX
Replies: 2
Views: 846

Those three are the complete set. The DB2/UDB Enterprise stage has full parallel capability.

"PX" was only ever a marketing term.
by ray.wurlod
Wed Jan 24, 2007 1:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Use DSJOB to search in director log
Replies: 13
Views: 5943

The dsjob command is documented in the Server Job Developers Guide and in the Parallel Job Advanced Developers Guide - the option you most likely require is -logsum and then you can pipe the output through grep to highlight the item you are seeking.
by ray.wurlod
Wed Jan 24, 2007 1:38 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decimal Problem : Not a v1.1type
Replies: 8
Views: 1445

Be more specific about "didn't work". Post the detail of the error message. Were any rows written to the Data Set?
by ray.wurlod
Wed Jan 24, 2007 1:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: One DataStage Server is going to die
Replies: 18
Views: 6779

No - these are for server jobs only. Scratch space is determined by the directories mentioned in the configuration file. Temporary space is determined by the directory mentioned in the TMPDIR environment variable.
by ray.wurlod
Wed Jan 24, 2007 1:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in joining 2 datasets
Replies: 2
Views: 695

If the join keys are VarChar, make sure they are trimmed of leading and trailing space characters. Make sure that your data are identically hash partitioned and sorted on the join keys.
by ray.wurlod
Wed Jan 24, 2007 1:24 pm
Forum: Site/Forum
Topic: How to search the posts by date
Replies: 9
Views: 5024

Of course, Walter is not sleeping at present! :wink:
by ray.wurlod
Wed Jan 24, 2007 5:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Difference between Email routine using the Sequencer and job
Replies: 4
Views: 1717

A sequencer can only make an Any or All decision to trigger its output(s) depending on whether its inputs have fired. It can not invoke routines.

In a job sequence, however, you can invoke DSSendMail via a Routine activity (clumsy) or a Notification activity.
by ray.wurlod
Wed Jan 24, 2007 5:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job has finished, status = 96 (Crashed)
Replies: 9
Views: 4506

Can you post the actual call to DSSetUserStatus() ?
The backslash is a quote character in DataStage BASIC, so this may be the cause. Try quoting the string.

Code: Select all

Call DSSetUserStatus(DQuote('D:\DATA\DEV\PROJECT\INPUT'))
by ray.wurlod
Wed Jan 24, 2007 2:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Strange problem in Job Sequence
Replies: 18
Views: 4368

I dont think so, because I have been able to see this even with the patch installed for SP2. Nonetheless, you need the patch for other reasons, particularly Job activities in job sequences. If you click on the single icon in each folder of the Palette, you get everything in the stage types branch of...
by ray.wurlod
Wed Jan 24, 2007 2:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob command not executes
Replies: 4
Views: 1256

You are using the wrong tool. To start a DataStage job from a client too, use the Director client.

While it is possible to invoke dsjob from the Administrator client command window (using the DOS verb with /C switch), it is an entirely inappropriate mechanism.
by ray.wurlod
Tue Jan 23, 2007 10:21 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: String Manipulation
Replies: 18
Views: 3330

InputField[ delimiter , start , count ] The delimiter asserts that you are dealing with a string (InputField) made up of zero or more substrings separated from each other by delimiter characters. For example "STRAWBERRY ICE CREAM" is a string containing 20 characters, or a string containing three wo...
by ray.wurlod
Tue Jan 23, 2007 10:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding exporting datamodel
Replies: 53
Views: 13005

Twenty years later Robert Pirsig wrote his second book, called "Lola" if I remember correctly. Long time between books. Not nearly as good, in my opinion.

Why shocked? If you remember the sixties you weren't there?
by ray.wurlod
Tue Jan 23, 2007 8:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: No File Descriptor --ERROR
Replies: 21
Views: 11051

Don't you think "output file full" is telling you anything?

You've marked the topic as resolved. How was it resolved?
by ray.wurlod
Tue Jan 23, 2007 8:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Best way to implement a business logic in C
Replies: 9
Views: 2573

Challenge the assumption. You've just spent $squillion on a GUI tool that can do the job AND generate C++ code. So why do you have to "implement a business logic in C" ?!! Do it in DataStage. Open the generated C++ code generated by compiling the Transformer stage, copy the code into a document, and...