Search found 15603 matches

by ArndW
Mon Oct 13, 2008 7:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Migration Issue
Replies: 8
Views: 1660

We are even more at a loss to explain this than you are - since you haven't explained any details; it is akin to saying "my car won't start" - that could be because the key is missing, someone put sugar into the tank, because the battery is dead, etc. Take a specific example - one row from your data...
by ArndW
Mon Oct 13, 2008 7:24 am
Forum: General
Topic: renew datastage license
Replies: 3
Views: 1710

I think that you need to look at the administrator client, not the director.
by ArndW
Mon Oct 13, 2008 7:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to achieve not(notfound()) results in parallel
Replies: 3
Views: 1371

Is this regarding lookup stage results?
by ArndW
Mon Oct 13, 2008 6:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: A loop sequence can abort because too many checkpoints
Replies: 5
Views: 1883

This is vaguely familiar. I seem to recall having had a similar problem in a job sequence where it would bomb after numerous iterations. It might have been 1024. I think what happened is that the memory allocated during one of the stages in the loop wasn't being freed. It could have been the job-act...
by ArndW
Mon Oct 13, 2008 5:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ORA-12519: TNS:no appropriate service handler found
Replies: 6
Views: 2494

This is an Oracle error and your DBA will explain it in detail. Have you tried connecting to the database from the UNIX "sqlplus" command? If not, try doing so and you will get the same error message.
by ArndW
Mon Oct 13, 2008 5:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Scheduling does not work
Replies: 5
Views: 1843

I assume that the AT schedule is gone. Re-enter your scheduling from DataStage (actually, do the old schedules still show in the director?).
Did you enter the "AT" command from a shell to see what entries are present?
by ArndW
Mon Oct 13, 2008 5:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Migration Issue
Replies: 8
Views: 1660

sgubba - although you don't think it important, I feel that telling us which stages (particularly input and output ones) you are using and what the program logic does is useful in analyzing your problem. Also, do you have different configurations in use and is the hardware platform the same?
by ArndW
Mon Oct 13, 2008 4:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Datastage Scheduling does not work
Replies: 5
Views: 1843

a) what has changed between the time when it worked and when it stopped working?

b) what is displayed on your DataStage server in a CMD window when logged in with the userid that you use in DataStage, you enter the command "at"?
by ArndW
Sun Oct 12, 2008 10:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine called from job transformer -> abnormal terminati
Replies: 10
Views: 5998

For test purposes try: $INCLUDE DSINCLUDE JOBCONTROL.H CallingJobName = DSGetJobInfo(DSJ.ME,DSJ.JOBNAME) IF FIELD(Arg1,'.',1)=CallingJobName THEN Ans = DSMakeJobReport(DSJ.ME,2,"CRLF") END ELSE JobHandle = DSAttachJob(Arg1, DSJ.ERRNONE) IF JobHandle>0 THEN C...
by ArndW
Sun Oct 12, 2008 9:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine called from job transformer -> abnormal terminati
Replies: 10
Views: 5998

Yep, that was what I wanted to check - we know now that the job itself can call and get a return value from the routine with no issues, so your error is coming from the routine. $INCLUDE DSINCLUDE JOBCONTROL.H CallingJobName = DSGetJobInfo(DSJ.ME,DSJ.JOBNAME) IF FIELD(Arg1,'.',1)=Cal...
by ArndW
Sun Oct 12, 2008 7:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: outer join works but hash file dont
Replies: 4
Views: 1016

Could you post your actual error message as well, please. Also, what is the length given for the integer columns?
by ArndW
Sun Oct 12, 2008 6:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: outer join works but hash file dont
Replies: 4
Views: 1016

What data types and sizes have you declared the various columns (tatic_id, opp_no, opp_id) as? Which one(s) are you using as the key(s)?
by ArndW
Sun Oct 12, 2008 4:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine called from job transformer -> abnormal terminati
Replies: 10
Views: 5998

Change the routine to have the first line do a "RETURN(1)" - that will mean the error is in the calling and return mechanism and not part of your code.
by ArndW
Sat Oct 11, 2008 8:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine called from job transformer -> abnormal terminati
Replies: 10
Views: 5998

Can the routine be being passed the name of the job that is calling it? This is not allowed, you need to modify your code to include something like: $INCLUDE DSINCLUDE JOBCONTROL.H IF DSGetJobInfo(DSJ.ME,{can't recall the correct parameter}) = Arg1 THEN JobHandle = DSJ.ME ELSE JobH...
by ArndW
Sat Oct 11, 2008 8:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine hangs
Replies: 13
Views: 3609

If the "7z" program expects terminal input it won't return until it gets it, and DataStage won't supply it.