Search found 53125 matches

by ray.wurlod
Wed Nov 22, 2006 2:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Analyzing Dynamic Hash File
Replies: 7
Views: 1358

You have to count all fields, not just the key columns.
There is a single byte delimiter between each field. Count those too.
That is the figure to present to HFC - it does the rest.
by ray.wurlod
Wed Nov 22, 2006 1:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Analyzing Dynamic Hash File
Replies: 7
Views: 1358

That is output from the HASH.HELP.DETAIL command or something similar. The record length is not calculated from the field sizes; it is actually measured from the data stored in the file. What you have highlighted in the picture is merely the key columns. Chances are that there are non-key columns as...
by ray.wurlod
Wed Nov 22, 2006 1:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weird Character When copying file...
Replies: 17
Views: 4666

Depends how you get it to the other machine, maybe. FTP will probably effect the translation transparently; copy/paste is less likely to do so.
by ray.wurlod
Wed Nov 22, 2006 1:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stored Procedure
Replies: 19
Views: 3636

First tell us what kind of activity you used for your stored procedure in a job sequence. I've searched my Palette and can't find one called Stored Procedure.
by ray.wurlod
Wed Nov 22, 2006 11:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: coding conversion
Replies: 15
Views: 3422

All this seems like overkill. Create a job sequence. Include an Execute Command activity to execute your command. Use the output and/or exit status from that command (available through activity variables) in a downstream Nested Condition activity or to provide a job parameter value in a Job activity.
by ray.wurlod
Wed Nov 22, 2006 11:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to delete hashed file - job aborts
Replies: 5
Views: 2324

Make sure all DataStage users' umask is set to 002, and that they belong to appropriate operating system groups.
by ray.wurlod
Wed Nov 22, 2006 11:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Partitioning - Writing to DB2
Replies: 4
Views: 2073

@PARTITIONNUM is the ordinal number of the partition on which the process is executing. Possible value is in the range 0 through (@NUMPARTITIONS - 1). @NUMPARTITIONS is constant, established by the number of nodes mentioned in the configuration file or in the node pool in which the stage is executin...
by ray.wurlod
Wed Nov 22, 2006 11:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How do I write to the ETL server event log ?
Replies: 3
Views: 1181

Code: Select all

dsjob -log -info projectname jobname << EOT
First line of my message.
Second line of my message.
Third line of my message.
\004
EOT
by ray.wurlod
Wed Nov 22, 2006 11:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: change capture in parallel jobs
Replies: 7
Views: 2355

It (RPC) may be disabled for the entire project which, to my mind, is a Good Thing.

The error message (which you only posted part of) suggests incomplete mapping to the output link. Go there, and check the Mapping tab.
by ray.wurlod
Wed Nov 22, 2006 11:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator stage performance
Replies: 24
Views: 8753

The place to find it is on the Partitioning tab on the input link. But the place to do it is in an upstream Sort stage, as a couple of posters have pointed out.
by ray.wurlod
Wed Nov 22, 2006 11:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: parallel job functions
Replies: 12
Views: 4311

It will not be before January 2007, because I am already fully booked and need some time to develop the materials. And have other development tasks competing for priority. The reason to seek expressions of interest at this time is precisely to gauge interest, and organize priorities accordingly. As ...
by ray.wurlod
Wed Nov 22, 2006 11:12 am
Forum: Site/Forum
Topic: Happy Thanksgiving.
Replies: 7
Views: 3599

Watch that space! Gig finishes today (the day before Turkey Day).

It's really quite amazing the number of folks who are looking forward to turkey, having forgotten last year's week or two of having to eat turkey leftovers!
Plus ca change, plus la meme chose.
by ray.wurlod
Wed Nov 22, 2006 11:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSD.SEQOpen Unable to create file B_C.txt
Replies: 14
Views: 5744

But you can do it from DataStage, perhaps using ExecSH or ExecDOS (depending on platform) as an after-stage or after-job subroutine. In UNIX use the cat command, in DOS use the type or copy command.
by ray.wurlod
Wed Nov 22, 2006 11:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Weird Character When copying file...
Replies: 17
Views: 4666

DSguru2B wrote:You are correct Craig. It is control Z. I dont know about dos but in unix it is control z (^Z).

My understanding is that Ctrl-Z is the DOS end-of-file character, and that the UNIX end-of-file character is Ctrl-D.
by ray.wurlod
Wed Nov 22, 2006 11:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Check Byte Data
Replies: 2
Views: 890

OCONV may be better.
If you want characters converted to pairs of hex digits representing byte values, use Oconv(TheString, "MX0C")