Search found 53125 matches

by ray.wurlod
Thu Jan 25, 2007 6:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Surrogate key and dataset files
Replies: 3
Views: 896

When you generate your surrogate key, use the partition number and partition count in the formula. Search for details. That way you will generate unique numbers. You ARE actually getting all the numbers, but alternate numbers (assuming round robin partitioning) are going to alternate nodes. If you l...
by ray.wurlod
Thu Jan 25, 2007 6:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Use DSJOB to search in director log
Replies: 13
Views: 5943

STARTED includes "finished", which also has type "Control". Pick out the timestamp from that and search for the next newest event, which has to be the start event for the same run. No events were auto-purged from your log, which is why the "finished" event was last. You mustn't leap to conclusions, ...
by ray.wurlod
Thu Jan 25, 2007 6:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problems in converting date to timestamp
Replies: 17
Views: 4413

If it's a parallel job as you indicated, use DateToTimestamp() function, making sure to set the date format string to include microseconds.
by ray.wurlod
Thu Jan 25, 2007 4:37 pm
Forum: IBM QualityStage
Topic: how to look for the directory in quality stage
Replies: 5
Views: 2766

That's a security issue. Consult with your network administrator.
by ray.wurlod
Thu Jan 25, 2007 4:35 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unkown result in the output of a routine which use SETFILE
Replies: 15
Views: 4682

Not really. What if there really had been a failure? The following would be preferable. Not only because it's documented (hint!). * Construct and execute SETFILE command. Cmd = 'SETFILE ' : hshdflpth : ' ' : 'hsdfile' :' OVERWRITING ' PERFORM Cmd * Record result of SETFILE command. Temp = @SYSTEM.RE...
by ray.wurlod
Thu Jan 25, 2007 4:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: load data from MS Access DataBase to UDB by using DataStage
Replies: 13
Views: 5039

Is the OP really still using version 4 of DataStage? If so, the variety of ODBC options may not be as great.
by ray.wurlod
Thu Jan 25, 2007 4:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SetUserStatus()
Replies: 3
Views: 3737

It's an internal subroutine, which means it is not exposed via the Routines branch of the Repository. There are others, such as DSExecute(), that are similarly implemented. As others have noted, they are documented, but can only be typed in. To use DSSetUserStatus from within a server job (Transform...
by ray.wurlod
Thu Jan 25, 2007 4:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Populating A user defined enviroment variable TIMESTAMP Data
Replies: 17
Views: 4192

One or two "sandpit" projects too, I'll guess.
by ray.wurlod
Thu Jan 25, 2007 4:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Use DSJOB to search in director log
Replies: 13
Views: 5943

In Director log view, STARTED events show up with a type of Control. I attempted to be descriptive rather than prescriptive. That's why it was in quotes.
by ray.wurlod
Thu Jan 25, 2007 4:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CDC Internal Functionality
Replies: 2
Views: 933

trobinson wrote:Have you taken a look at the Operators reference pdf for the changecapture Operator?

That is, the Orchestrate Operators manual. It doesn't ship with DataStage but can be had for the asking from the vendor (ask for the OEM 75 Manuals) or is handed out on pretty much every IBM DataStage class.
by ray.wurlod
Thu Jan 25, 2007 4:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fact to Fact
Replies: 8
Views: 2103

Not if your database is Red Brick, which supports efficient fact-to-fact joins, constrained on as many dimensions as you wish, via a multi-table index called a star index. It is worth adding that this technique - indeed the entire database now known as Red Brick - was originally designed by Ralph Ki...
by ray.wurlod
Thu Jan 25, 2007 4:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal : node_node1: Player 2 terminated unexpectedly.
Replies: 34
Views: 50742

I mean, how does a program not write an error message if it dies? If it's killed with SIGKILL it may not get the opportunity to. Further, all player processes redirect their stdout and stderr to their node's section leader process, which transmits anything to be logged back to the conductor process...
by ray.wurlod
Thu Jan 25, 2007 4:04 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dimension View
Replies: 8
Views: 2085

If you have multiple fact tables that refer to the calendar dimension I would suggest loading the calendar dimension into a Lookup File Set. That's because the "index" (hash table) that the Lookup stage would ordinarily have to build at run time is built and stored in the Lookup File Set when it is ...
by ray.wurlod
Thu Jan 25, 2007 4:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: column import stage error=must be of type string or raw
Replies: 4
Views: 1270

Or use a Transformer stage and Field() functions to parse it?

As you've seen the Column Import stage is fairly particular about the input column you ask it to parse.
by ray.wurlod
Thu Jan 25, 2007 3:58 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Db2 Bulk Load (TEMP_FILE) Error
Replies: 9
Views: 9233

Who knows, maybe the OP will return and mark the post as resolved.