Search found 15603 matches

by ArndW
Wed Jul 30, 2008 3:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs dropping parameters
Replies: 9
Views: 1510

And are those values correctly filled when you look at the first job log entries?
by ArndW
Wed Jul 30, 2008 3:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting error compiling transformer in PX Job
Replies: 9
Views: 2902

You can edit your post to remove all the details, they are not required in this case. Most likely the code is too big for your installation's optimizer. I would recommend turning off optimization either via your ADMIN tool for all jobs, or to change the compiler options for this particular transform...
by ArndW
Wed Jul 30, 2008 3:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Char to Decimal conversion.
Replies: 2
Views: 1288

No simple way, but you could write a procedure/function in DB2 and use that. See this link for an example.
by ArndW
Wed Jul 30, 2008 3:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: error updating secondary indicies
Replies: 5
Views: 2627

Is the DataStage project UNIX directory being created? If you attach there, what are the file ownership and groups? Perhaps your user with which you create the project has incorrect umask settings?
by ArndW
Wed Jul 30, 2008 2:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job running stage
Replies: 4
Views: 1821

"At the beginning" usually points more to a SQL or Database issue, whereas "at the end" often indicates a DataStage issue. As is often the case with sporadic problems, perhaps the column position change has just changed the frequency of the problem but hasn't solved it; I can't see how a column posi...
by ArndW
Wed Jul 30, 2008 2:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Limit rows disabled
Replies: 9
Views: 3013

I have Version 8 on UNIX and the limit rows values are greyed out for Parallel jobs and enable for server jobs.
by ArndW
Wed Jul 30, 2008 2:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs running very longtime
Replies: 11
Views: 3895

I haven't worked with FUTEX locks, but it seems to be the LINUX equivalent of MUTEX calls. So all the separate server job processes seem to be waiting on a signal that they are probably never going to get. Do you have any "defunct" or "zombie" processes visible?
by ArndW
Wed Jul 30, 2008 2:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to unlock datastage jobs.
Replies: 8
Views: 42526

satish_valavala wrote:...get the process id using above command
and issue the below command
kill -9 <pid>...


NEVER use kill -9 unless you know what you are doing and have the ability to clean up locks and the opportunity to restart DataStage
by ArndW
Wed Jul 30, 2008 1:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: migration thorugh cobol code and Datastage PX
Replies: 13
Views: 6819

Mohandl - the numbers are absolutely meaningless; you asked for metrics without detailing what you wanted, so I did a typical consultant type of thing and gave you metrics The "best looking code" part doesn't have much meaning, either. First of all, you need to tell the forum if you are doing a Main...
by ArndW
Wed Jul 30, 2008 1:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Subtract 1 month from any date given
Replies: 6
Views: 1546

There are various ways to do this using different functions. The answer depends on how you define "subtract one month". What is one month less than "July 31"? The simple method is to use ICONV() and OCONV() to convert a display date into an internal date, then subtract 30 and reconvert to a display ...
by ArndW
Wed Jul 30, 2008 1:20 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job running stage
Replies: 4
Views: 1821

I don't think that this can be diagnosed from DataStage alone, you will need to involve your DBA when this happens again. Does the "hang" occur after all the data has been read or at the beginning of the SELECT?
by ArndW
Tue Jul 29, 2008 12:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: output from hashed file
Replies: 47
Views: 11788

I chose 132 as that is the (old) common width for wide printouts, before the days of variable width fonts. You can raise that width, but look at the help file to get the maximum allowable value. In this case, 132 should have been ample. Can you do a "LIST DICT yourhashedfile" ?
by ArndW
Tue Jul 29, 2008 12:00 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs running very longtime
Replies: 11
Views: 3895

are the other processes also waiting on the same or similar locks?
by ArndW
Tue Jul 29, 2008 11:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Jobs running very longtime
Replies: 11
Views: 3895

I went to Google and entered "LINUX equivalent of truss" and found out that you need to enter the "strace" or "ltrace" command.
by ArndW
Tue Jul 29, 2008 11:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: output from hashed file
Replies: 47
Views: 11788

The SET.TERM.TYPE command should be on a separate line; and a subsequent GET.TERM.TYPE command will show a new width of 132 (or you can set it higher, if you wish). Right now, 5 columns of width 15 plus the default 3 space separator is over 80, which is why you are getting this vertically aligned ou...