Search found 37 matches

by cheerfu1
Thu Nov 03, 2005 7:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSR_LICENSE GET PROTECT
Replies: 4
Views: 2510

DSR_LICENSE GET PROTECT

Hi All, currently i have encountered an issue whereby even if i have stopped a job through Director, however in unix's ps -ef i can still grep a phantom thread of the job.. therefore i turn to "cleanup Resources" in Director, the thread 's desc would be DSR_LICENSE GET PROTECT. Does anyone...
by cheerfu1
Wed Oct 19, 2005 2:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: AfterJob (ExecDOS): Error when executing command
Replies: 3
Views: 2923

AfterJob (ExecDOS): Error when executing command

Hi, I have a datastage job which calls a DOS command after it finishes processing. I have run it more than 30 times in a day. However, occassionaly, this after-job command does not work. However, when I restart again, it will always work. Any idea? Thanks in advance. AfterJob (ExecDOS): Error when e...
by cheerfu1
Mon Oct 03, 2005 7:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: dsjob error in UNIX
Replies: 8
Views: 4235

Hi, such commands will not affect other settings? only will properly set the paths for dsjob to be run? :? ashwin2912, I think that you are missing your ENVironment settings for your job call. You should do a "cd `cat /.dshome`" followed by a ". ./dsenv" which should set your pat...
by cheerfu1
Thu Sep 01, 2005 10:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unable to connect to Informix
Replies: 1
Views: 1112

Unable to connect to Informix

Hi All,
currently im trying to connect to a infomix db but w/o success.
at datastage manager,i keep encountering the following error message
Datadirect [20101] Not a data message


Does anyone knows what does the error indicates?

Thankx..
by cheerfu1
Mon Aug 15, 2005 1:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Installation issues
Replies: 4
Views: 2042

Thanks!

But to clarify, does installing as a super user cause any impact ??
ray.wurlod wrote:No.

A bus error occurs on the backplane of the machine; that is, there's a problem somewhere with the hardware. Get your UNIX system admin involved.

Try installing to a different location.
by cheerfu1
Mon Aug 15, 2005 12:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Installation issues
Replies: 4
Views: 2042

Installation issues

Hi all,
Has encountered the following error while installating Datastage server.

Aix5.1 - Datastage6.0

Searching for installed components
**./install.sh[2885]: 1343588 Bus error

Installation canceled


Installation is done using super user <root> . could this be the reason?
thanks :?
by cheerfu1
Wed Aug 10, 2005 7:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage returns fake return code
Replies: 18
Views: 8528

It does not seem to run in DS 4.
by cheerfu1
Wed Aug 10, 2005 7:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage returns fake return code
Replies: 18
Views: 8528

I am using After-Job routine to create a file which indicates the job has finished. However, when I used the following code, it always return a status 0 no matter it was stopped or was run successfully. Any clue? $INCLUDE DSINCLUDE JOBCONTROL.H RoutineName = 'isFinished' Output = 0 SystemReturnCode ...
by cheerfu1
Wed Aug 10, 2005 7:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DSGetJobInfo for current job always return 0
Replies: 1
Views: 1554

DSGetJobInfo for current job always return 0

This will always return 0. Is there anyway to get the correct state of the current job? Thank you in advance :roll: $INCLUDE DSINCLUDE JOBCONTROL.H RoutineName = 'isFinished' Output = 0 SystemReturnCode = 0 JobStatus = DSGetJobInfo(DSJ.ME, DSJ.JOBSTATUS) Call DSLogInfo(JobStatus, "IsFinished&qu...
by cheerfu1
Wed Aug 10, 2005 2:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage returns fake return code
Replies: 18
Views: 8528

Where can I get job sequencer in DS 4.0?
by cheerfu1
Wed Aug 10, 2005 1:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage returns fake return code
Replies: 18
Views: 8528

it seems that the -wait parameter passed to the dsjob executable does not work properly arbitrarily. I am supposed to process the input file, then delete the input file, after the DS JOB completes. However, it deletes the input file first before the DSJOB starts properly, eventhough I have used -wait.
by cheerfu1
Tue Aug 09, 2005 7:03 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage returns fake return code
Replies: 18
Views: 8528

It still does not work properly. Any suggestion?
by cheerfu1
Fri Aug 05, 2005 3:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage returns fake return code
Replies: 18
Views: 8528

jobstatus was intentionally removed. However, I have updated the code which includes the jobstatus with the same problem. A couple of things to keep in mind... The -wait and -jobstatus commands are mutually exclusive as both tell it to wait before moving to the next step. You should use one of the ...
by cheerfu1
Thu Aug 04, 2005 9:12 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage returns fake return code
Replies: 18
Views: 8528

After I process input1 using DS Job -wait -jobstatus There is no -jobstatus in code posted. I also think that DataStage needs time to clean up between jobs. You need to sleep a few seconds between jobs. Hi Duke, I have let it sleep for a minute however the problem persists especially when processin...
by cheerfu1
Thu Aug 04, 2005 3:50 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage returns fake return code
Replies: 18
Views: 8528

Thanks........... :) Dim DSPROJ As String = "TEST_PROJECT" Dim DSPWD As String = solutionPath + "ds_setting\ds_password.txt" Dim DSSERVER_NAME As String = File.OpenText(solutionPath + "ds_setting\ds_server_name.txt").ReadLine() 'DSJob 's name Dim JOBDS As String = group...