Search found 29 matches

by jtsoong
Sun May 25, 2008 6:41 pm
Forum: General
Topic: ./uv -admin -clearsockets not working on v8 ?
Replies: 15
Views: 7344

one more thing :)

i also found (with the server shutdown) $> ps -ef | grep dsapi dsadm 3782 29764 0 10:38:43 pts/1 0:00 grep dsapi dsadm 8182 1 0 May 24 ? 0:12 dsapi_slave 8 7 0 dsadm 6493 1 0 May 24 ? 4:02 dsapi_slave 8 7 0 However a normal kill does nothing to these processes. They remain alive. How bad is it to &q...
by jtsoong
Sun May 25, 2008 2:59 am
Forum: General
Topic: ./uv -admin -clearsockets not working on v8 ?
Replies: 15
Views: 7344

no lsof

hmm i don't have lsof (solaris 9).

i'm wondering if i can just ipcrm the two shared memory entries that have NOATTCH !=0 ...

i'm not sure if this will break anything else
by jtsoong
Sat May 24, 2008 9:05 pm
Forum: General
Topic: ./uv -admin -clearsockets not working on v8 ?
Replies: 15
Views: 7344

more info

oh i found some more info! So my netstat returns: $> netstat | grep dsrpc machine.dsrpc a1.machine.com.au.34836 64088 0 49232 0 CLOSE_WAIT machine.dsrpc a1.machine.com.au.53649 64088 0 49232 0 CLOSE_WAIT So there are two open CLOSE_WAIT ports, when i do a 'ipcs -mop', i get a whole bunch of entries ...
by jtsoong
Sat May 24, 2008 8:40 pm
Forum: General
Topic: ./uv -admin -clearsockets not working on v8 ?
Replies: 15
Views: 7344

./uv -admin -clearsockets not working on v8 ?

Hi, I have a problem with dsrpc daemon not starting atm when i start my server. I looked through the forums and found that when i run 'netstat | grep dsrpc' there are two ports open in the "CLOSE_WAIT" state. I found another thread on here saying that these can be fixed by running: ./uv -a...
by jtsoong
Fri May 23, 2008 8:34 pm
Forum: General
Topic: Best/easiest way to capture reject records in datastage
Replies: 17
Views: 21657

transformer

if they are being rejected from a Transformer stage you can click on the 'constraints' button (top left) and set up a reject link
by jtsoong
Mon May 19, 2008 3:44 am
Forum: General
Topic: File Arrival
Replies: 4
Views: 1816

cron

you could also do it as a shell script/cron job combo, kicking of the job using the 'dsjob' command
by jtsoong
Sun May 18, 2008 10:26 pm
Forum: General
Topic: SIGSEGV - tried re-compile and APT_DISABLE_COMBINATION
Replies: 1
Views: 1730

solution!

found that i was pointing at the wrong JRE

I changed:

DATASTAGE_JVM = jre/lib/sparc/server


to

DATASTAGE_JRE = jre/lib/sparc/client

(this is where libjvm.so lives)

It would be nice if the error messages were a little more informative, but i'm pretty happy its working :)
by jtsoong
Sun May 18, 2008 10:49 am
Forum: General
Topic: SIGSEGV - tried re-compile and APT_DISABLE_COMBINATION
Replies: 1
Views: 1730

SIGSEGV - tried re-compile and APT_DISABLE_COMBINATION

(Note: I've searched these forums and found the posts that talk about this error, none of the things they suggested helped). Hi guys, I have a Java Client stage that worked fine on my Linux development Server. I've now imported it onto a Solaris machine and recompiled it. Now when I run it i get: &q...
by jtsoong
Sun May 18, 2008 10:36 am
Forum: General
Topic: Java Pack problem - error
Replies: 7
Views: 2034

reply

eostic wrote:In v8 warn and trace are broken. other alternatives have to be used.

Ernie
oh right ya that seems to be the case :)

its something i can work around, good to know its them not me though :)
by jtsoong
Mon May 12, 2008 12:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformer Rejects not throwing warnings
Replies: 5
Views: 1878

oh

oh yer, thats a good suggestion , thanks :)
by jtsoong
Sun May 11, 2008 6:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformer Rejects not throwing warnings
Replies: 5
Views: 1878

yup

yup they're still marked as 'REJECT LINKS' in the Transformer.

Its annoying because now i'm stuck with 3 Sequential Files with the 'Rejects' in them.. I was hoping to use that 'Link Collector' to collect all the 'Rejects' into one file...
by jtsoong
Fri May 09, 2008 1:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transformer Rejects not throwing warnings
Replies: 5
Views: 1878

Transformer Rejects not throwing warnings

Hi guys, I'm running a couple of Transformers with Reject Links. I used to have these Reject Links going to individual Sequential File stages. When any rows went down the Reject Links they would throw a Warning-'Row Rejected' that was shown in Director and could be retrieved using DSJ.JOBSTATUS. I d...
by jtsoong
Thu May 01, 2008 1:02 am
Forum: General
Topic: Java Pack problem - error
Replies: 7
Views: 2034

Please provide more info. about your job. Are you using Java client or Java Transformer? java client in a server job. i have a transformer than sends data to my java client.. the java client runs ok, but if i put a 'warn' or 'info' in it fails with the error message above and doesn't show me the st...
by jtsoong
Wed Apr 30, 2008 10:43 pm
Forum: General
Topic: Java Pack problem - error
Replies: 7
Views: 2034

Java Pack problem - error

Hi guys i have a java class that can be called ok. however as soon as i put an 'info("this is some trace")' statement in the java program i get this error: "Abnormal termination of stage XXX_Job..TRANS_SetUp_Message detected" If i take out this 'info' line then it works fine.... ...