DSBIN command

Post questions here relative to DataStage Enterprise/PX Edition for such areas as Parallel job design, Parallel datasets, BuildOps, Wrappers, etc.

Moderators: chulett, rschirm, roy

Post Reply
attu
Participant
Posts: 225
Joined: Sat Oct 23, 2004 8:45 pm
Location: Texas

DSBIN command

Post by attu »

Hi,
I want to go to the ds engine by typing $DSHOME when I log in to the unix box, i typed this on unix prompt

DSBIN=`cat / .dshome/bin
export DSBIN

then I did $DSHOME and got this message
zsh: permission denied: /edw/Ascential/DataStage/DSEngine
kcbland
Participant
Posts: 5208
Joined: Wed Jan 15, 2003 8:56 am
Location: Lutz, FL
Contact:

Post by kcbland »

Your command lines make no sense. If you want an environment variable that points to the DS Engine bin directory do this:

Code: Select all

DSBIN=`cat /.dshome`/bin
export DSBIN
Then do a "cd $DSBIN" and and you should change to that directory. If you want to run a bin command from anywhere, do

Code: Select all

$DSBIN/list_readu
Kenneth Bland

Rank: Sempai
Belt: First degree black
Fight name: Captain Hook
Signature knockout: right upper cut followed by left hook
Signature submission: Crucifix combined with leg triangle
attu
Participant
Posts: 225
Joined: Sat Oct 23, 2004 8:45 pm
Location: Texas

Post by attu »

Thanks kcbland .

its working...

i want to use dsjob -lprojects command and getting this error.

dsjob: error while loading shared libraries: libvmdsapi.so: cannot open shared object file: No such file or directory

whats wrong with it?
DSguru2B
Charter Member
Charter Member
Posts: 6854
Joined: Wed Feb 09, 2005 3:44 pm
Location: Houston, TX

Post by DSguru2B »

Refer here.
Creativity is allowing yourself to make mistakes. Art is knowing which ones to keep.
attu
Participant
Posts: 225
Joined: Sat Oct 23, 2004 8:45 pm
Location: Texas

Post by attu »

DSguru2B wrote:Refer here.
Yup.. I sourced the dsenv.. it's working.
Thanks
Post Reply