dsjob.exe

Post questions here relative to DataStage Server Edition for such areas as Server job design, DS Basic, Routines, Job Sequences, etc.

Moderators: chulett, rschirm, roy

Post Reply
vinodhraj
Participant
Posts: 53
Joined: Mon Sep 12, 2005 6:51 am

dsjob.exe

Post by vinodhraj »

When I run dsjob.exe then I get the following error


0509-036 Cannot load program ./dsjob because of the following errors:
0509-150 Dependent module libvmdsapi.so could not be loaded.
0509-022 Cannot load module libvmdsapi.so.
0509-026 System error: A file or directory in the path name does not exist.

Thanks

vinod
ArndW
Participant
Posts: 16318
Joined: Tue Nov 16, 2004 9:08 am
Location: Germany
Contact:

Post by ArndW »

Moderator - please remove, duplicate post.
Kirtikumar
Participant
Posts: 437
Joined: Fri Oct 15, 2004 6:13 am
Location: Pune, India

Post by Kirtikumar »

Executing following command before executing the dsjob.exe may help...
. $DSHOME$/dsenv
Regards,
S. Kirtikumar.
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

It will help as that is a necessary step. And now I guess the other post is the duplicate. :wink:

Well, except for the extra dollar sign. Try:

Code: Select all

cd $DSHOME
. ./dsenv
-craig

"You can never have too many knives" -- Logan Nine Fingers
somu_june
Premium Member
Premium Member
Posts: 439
Joined: Wed Sep 14, 2005 9:28 am
Location: 36p,reading road

Post by somu_june »

Hi Chulett,
Iam facing the same problem as vinodh. I typed from root cd$DSHOME Iam going to my /datastage (group) and when I typed ls -a . I couldnot find any . ./dsenv . I can find only ./ , . ./

Please correct me if Iam wrong.



Thanks,
Somaraju
somaraju
chulett
Charter Member
Charter Member
Posts: 43085
Joined: Tue Nov 12, 2002 4:34 pm
Location: Denver, CO

Post by chulett »

somu_june wrote:Please correct me if Iam wrong.
Oh, don't worry - people will without you having to ask. :wink:

That means $DSHOME isn't set for you. Try this instead:

Code: Select all

cd `cat /.dshome`
. ./dsenv
-craig

"You can never have too many knives" -- Logan Nine Fingers
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

dsjob.exe on UNIX ??
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
somu_june
Premium Member
Premium Member
Posts: 439
Joined: Wed Sep 14, 2005 9:28 am
Location: 36p,reading road

Post by somu_june »

Hi Chulett,


Thanks for reply . After doing what you posted my command is working and Iam getting a status code of 0



Thanks,
Somaraju
somaraju
vinodhraj
Participant
Posts: 53
Joined: Mon Sep 12, 2005 6:51 am

Post by vinodhraj »

Hi,

I have got the solution in changing the .profile LIBPATH in home directory
Before it is pointing somewhere.

PATH=/usr/bin:/etc:/usr/sbin:/usr/ucb:$HOME/bin:/usr/bin/X11:/sbin:.

export PATH
LIBPATH=/baselwb/dsadmhome/Ascential/DataStage/DSEngine/lib
export LIBPATH

if [ -s "$MAIL" ] # This is at Shell startup. In normal
then echo "$MAILMSG" # operation, the Shell checks
fi # periodically.
. ~db2inst1/sqllib/db2profile
. /dvt/isis/uk/scr/.isis_profile

vinod
kumar_s
Charter Member
Charter Member
Posts: 5245
Joined: Thu Jun 16, 2005 11:00 pm

Post by kumar_s »

Hi Vinod,
Thats nice to see that you got rid of your issue. Please let me know, what happens when you execute uv from your command prompt.
Impossible doesn't mean 'it is not possible' actually means... 'NOBODY HAS DONE IT SO FAR'
Post Reply