Search found 53125 matches

by ray.wurlod
Tue Sep 04, 2007 4:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get rid of zeros in the output
Replies: 1
Views: 563

You will find your answer by searching in the correct forum. Do an "all terms" search for View Data decimal
by ray.wurlod
Tue Sep 04, 2007 4:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Telnet service does not start
Replies: 4
Views: 1972

Something is using port #23. Find out what it is and halt it.
by ray.wurlod
Tue Sep 04, 2007 4:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Clarification needed on output of job stage
Replies: 3
Views: 838

Please advise what the solution was that caused you to mark this thread as Resolved.
by ray.wurlod
Tue Sep 04, 2007 4:16 pm
Forum: General
Topic: Create a DDL from my table definitions V8
Replies: 3
Views: 1367

Structure of the metadata repository has not really been documented for version 8, though you can deduce the same from the scripts supplied to create it. You might also like to try your working approach with DS_METADATA.
by ray.wurlod
Tue Sep 04, 2007 12:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job status
Replies: 2
Views: 780

Welcome aboard.

There is not enough information in your specification. For example how are you starting the job, and how are you detecting that its status changes? In particular, how do you detect a status of starting then the transition from that to running?
by ray.wurlod
Tue Sep 04, 2007 12:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to cleanup all unused hash files created earlier
Replies: 1
Views: 948

There is no such utility "out of the box". You need to identify them, and then execute a DELETE.FILE command against each. You can, of course, do this programmatically or in a DataStage job, but you do need to identify which hashed files need to be deleted and which do not. DO NOT delete any hashed ...
by ray.wurlod
Tue Sep 04, 2007 12:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to parameterise current date?
Replies: 1
Views: 620

current_date()

You don't even need a parameter - a stage variable will do. Initialize it to current_date() and don't put in a derivation expression for it.
by ray.wurlod
Tue Sep 04, 2007 12:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unexpected warning ...many times
Replies: 2
Views: 826

DataStage is (correctly) showing that it sent 1039 rows to DB2. DB2 rejected some of them. If 939 were inserted that would suggest that 100 were rejected and, further, that you have 100 warnings in your log showing why.
by ray.wurlod
Tue Sep 04, 2007 12:23 am
Forum: General
Topic: Is there a manual about the usage of commands and tables?
Replies: 8
Views: 2364

In the UniVerse SQL Reference Guide (or simply from knowing SQL standards) you would find that the correct function name is CHAR_LENGTH.
by ray.wurlod
Mon Sep 03, 2007 4:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting linkcount from previous stage
Replies: 6
Views: 1849

You can do it in one job - in an after-job subroutine - but I think after a while you'll see the benefits of the more modular approach you've taken.
by ray.wurlod
Mon Sep 03, 2007 4:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is the command to compile the job?
Replies: 10
Views: 2273

Because there is no command on the server that can be used to compile a job.
by ray.wurlod
Mon Sep 03, 2007 2:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: What is the command to compile the job?
Replies: 10
Views: 2273

Some kind of remote shell program on the UNIX machine to run the program on the client?
by ray.wurlod
Mon Sep 03, 2007 2:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Where does the Jobs that we creates are stored in repository
Replies: 6
Views: 2130

Wrong, wrong and wrong again. A Search of the forum will find the correct design time table names, which do not include DS_SUBROUTINES or DS_STAGES. No BASIC code has a .o suffix. Such files are more likely to be compiled C++ code (particularly since the job type is marked as "parallel"). Run time m...
by ray.wurlod
Mon Sep 03, 2007 12:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: unknown client library-IBMDB2
Replies: 2
Views: 1215

Looks like you've set either DB2INSTANCE or APT_DBNAME to the system name rather than to the database name.
by ray.wurlod
Sun Sep 02, 2007 10:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DataStage Job 1045 Phantom 4426
Replies: 1
Views: 1044

Welcome aboard. The code referred to is in the subdirectory RT_BP1045 and in the file called JOB.1109891624.DT.1444474461.TRANS1 - this is the code generated by your Transformer stage (the actual name of the stage is documented within the code). Look in and around line number 394 to see whether you ...