Search found 15603 matches

by ArndW
Mon Nov 21, 2005 1:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to create a job handle and use it
Replies: 1
Views: 504

A job handle is opened through a call to the DSAttachJob(<jobname>,<errormode>) function.
by ArndW
Sun Nov 20, 2005 11:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transform vs Routine
Replies: 4
Views: 1285

A transform is a 1-line function that is actually replaced in the job, a routine is a separate function call that is compiled and stored elsewhere. If you change a transform then you need to recompile any jobs that use it. If you change a routine you only need recompile it once and the new version w...
by ArndW
Sun Nov 20, 2005 11:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: increase performance
Replies: 7
Views: 2222

Take your incoming data stream and sort it by ascending identifier and descending occurrence. Process the sorted file through a transform with a stage variable call LastIdentifier holding the last identifier. In the constraint put in a "In.IDENTIFIER<>LastIdentifier" and output that row. You don't r...
by ArndW
Sun Nov 20, 2005 8:21 am
Forum: Site/Forum
Topic: New Forum
Replies: 11
Views: 5894

Ray,

do you wish to limit it to only those who have taken that particular class?
by ArndW
Sat Nov 19, 2005 7:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Communication link failure
Replies: 7
Views: 5688

It seems that something timed out, either the TCP/IP connection or the database commit. 1. What is your commit frequency? 2. Is the problem reproduceable either with number of rows processed within the same job or with a similar runtime for the same job? This might help to see if it is the DB or not.
by ArndW
Fri Nov 18, 2005 5:15 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need of uvodbc.config for extract from Universe Database
Replies: 3
Views: 1376

Since using Hashed files and UniVerse are identical, there is no need for you to define ODBC connectivity, just point your jobs at the the hashed files you want and you can access them.
by ArndW
Fri Nov 18, 2005 10:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abort routine running too long
Replies: 5
Views: 890

Neo,

It sucks, doesn't it?

I once had a Pascal Professor who allowed us to use GOTO statements; but said we would need to justify their use in comments. I almost never use GOTO statements and structured coding, even in BASIC routines, usually allows you to dispense with GOTOs.
by ArndW
Fri Nov 18, 2005 9:56 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: documentson creating stage
Replies: 1
Views: 893

The best document is Parallel Job Advanced User Guide, chapter "Specifying your own Parallel Stage"
by ArndW
Fri Nov 18, 2005 9:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Use DB2 Connect for Extracting DB2 / Mainframe Data
Replies: 6
Views: 2662

RStone, DataStage can connect from a UNIX machine to DB/2 tables on the mainframe both from Server and PX. If one can set up a DB/2 connect then one can get the data using DataStage. If DB/2 connectivity is not set up then DataStage cannot retrieve data - this is more of a configuration question and...
by ArndW
Fri Nov 18, 2005 9:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abort routine running too long
Replies: 5
Views: 890

Neo, I've done that many times - unfortunately when doing a test in the routine it executes immediately and a cntrl-c won't stop it. We just need to be better programmers. Sometimes I've put counters into my programs and put in a 'IF Counter > 10000 THEN STOP' - n.b. that calling DSLogFatal() within...
by ArndW
Fri Nov 18, 2005 8:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: column import
Replies: 5
Views: 1269

The definition of "doubt" means "to lack confidence, or disbelieve" in something.

What is your problem with the column import stage in PX? You use it to make several columns out of one column.
by ArndW
Fri Nov 18, 2005 8:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Output link order
Replies: 7
Views: 1877

The output link execution order can be changed as I suggested.

Go into the Designer and double-click on the transform stage in question to open it. In your window you will see, at the top and beginning at the left a line of little icons. Choose the rightmost.
by ArndW
Fri Nov 18, 2005 7:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Output link order
Replies: 7
Views: 1877

One of the icons on the top of the transform window in the designer lets you specify the column ordering.
by ArndW
Fri Nov 18, 2005 6:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: COMMANDS
Replies: 2
Views: 725

The metadata you are looking for is stored in several hashed files and is generally not directly accessible. Even if you have only the base product you can still use the reporting assistant and the export facility (to an XML or DSX format file) to make this information available. Are you looking for...
by ArndW
Fri Nov 18, 2005 5:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe tables
Replies: 2
Views: 822

Your error message shows that you are accessing UniData, not UniVerse. It is equivalent to write to hashed files (and quicker, as well) if you don't have specific SQL conditions that you need to satisfy.