Search found 53125 matches

by ray.wurlod
Wed Sep 14, 2005 3:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Valid values of DSJ.STAGESTATUS
Replies: 6
Views: 1483

Same as DSJ.JOBSTATUS in DSGetJobInfo, some of which you will find in Help, the remainder in JOBCONTROL.H (in DSINCLUDE) or by searching this forum.
by ray.wurlod
Wed Sep 14, 2005 3:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Char to Varchar convert
Replies: 8
Views: 13494

As I said, "you can take that Char column and direct it across a Transformer stage into a VarChar with no derivation expression other than the input column". There is no error. There is no CAST required.
by ray.wurlod
Wed Sep 14, 2005 3:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Union
Replies: 3
Views: 1781

The Funnel stage is really UNION ALL. If you want just UNION, follow the Funnel stage with a Remove Duplicates stage.
by ray.wurlod
Wed Sep 14, 2005 3:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data Corruption using Oracle stage
Replies: 5
Views: 1292

What are the Oracle data types for col1 and col2?
by ray.wurlod
Wed Sep 14, 2005 3:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Char to Varchar convert
Replies: 8
Views: 13494

It IS the same in DataStage. However the metadata in your DataStage job design are used to communicate with the database server, which is the origin of your metadata mismatch warnings. But you can take that Char column and direct it across a Transformer stage into a VarChar with no derivation expres...
by ray.wurlod
Wed Sep 14, 2005 2:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Expression Evaluation
Replies: 17
Views: 4962

May I suggest SQL instaad? RetrieVe has to write a temporary entry to the file dictionary (DICT VOC in your case). UniVerse SQL does not require write permission to the dictionary because it doesn't write anything there. MathExpression= '1+2+3+4=9' Command = "SELECT EVAL " : DQuote(Mat...
by ray.wurlod
Wed Sep 14, 2005 2:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 UDB Load stage
Replies: 11
Views: 2402

But the error is "requires a minimum of '1' stream outputs". Does the menu show a "Convert to Stream" option?
by ray.wurlod
Wed Sep 14, 2005 1:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Changing Sequential file Settings based on Server
Replies: 7
Views: 1735

Hacking the Repository works if you know/understand what you are doing, but is not to be recommended in general. What you've done in the current version can not be guaranteed to work in the next version, as "they" reserve the right to change the structures and regularly do. How did you get the metad...
by ray.wurlod
Wed Sep 14, 2005 1:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DB2 UDB Load stage
Replies: 11
Views: 2402

Is the link between the Sequential File stage and the DB2 Enterprise stage a solid line or a dashed line? If it is a dashed line this means that it is a reference or reject link. You need to select the link, right click, and choose "Convert to Stream" from the menu.
by ray.wurlod
Wed Sep 14, 2005 1:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while running the orchestrate scripts
Replies: 5
Views: 2090

Find where gdb is and make sure that its parent directory is in the PATH.
by ray.wurlod
Wed Sep 14, 2005 1:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: CPU UTILIZATION
Replies: 1
Views: 824

Only that you have no spare capacity to do anything else at the time.

If you don't want to do anything else at the time, this is not a problem. Faster CPUs would allow you to get through the work faster, given that your current hardware has no idle capacity.
by ray.wurlod
Wed Sep 14, 2005 1:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Running Parallel Jobs(Nodes, Streams etc...)
Replies: 1
Views: 651

Have you read Chapter 2 of the Parallel Job Developer's Guide yet? That should answer this and any related questions. You may also find Chapter 58 edifying, as it goes into many examples of how to construct a configuration file, and therefore contains a wealth of information about processing nodes, ...
by ray.wurlod
Wed Sep 14, 2005 1:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unexpected termination by Unix signal 9(SIGKILL)
Replies: 9
Views: 13514

Someone DID issue a kill -9 command, Madhu, but probably won't admit to it. This is the only way that this particular signal can be generated. No-one creates applications or scripts to use this command, it's just too dangerous. For example, take a look at $DSHOME/sample/ds.rc (the DataStage startup/...
by ray.wurlod
Tue Sep 13, 2005 8:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to find a huge job log
Replies: 14
Views: 4639

When I did the training for version 1.0 (which was VERY slow), the instructor set us a task for a prize; the winner had to create the job that finished in the least possible time, as measured in Director. My job finished in half the time of everyone else's. 7 minutes against their 15 and more. I got...
by ray.wurlod
Tue Sep 13, 2005 7:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to avoid duplicates in merge stage
Replies: 7
Views: 3702

Care to share your solution, in case someone else has the same requirement?