going to universe from unix

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
SachinTilloo
Participant
Posts: 3
Joined: Tue Jul 27, 2004 5:05 am

going to universe from unix

Post by SachinTilloo »

I want to run DS.TOOLS from universe from unix.
I remember the command .`cat /.dshome`/bin/uv to be run from the
project directory. But it's not taking me to universe command line.
Can anybody tell me if I am mistaken in this process ??

Thanks
kduke
Charter Member
Charter Member
Posts: 5227
Joined: Thu May 29, 2003 9:47 am
Location: Dallas, TX
Contact:

Post by kduke »

Code: Select all

cd `cat /.dshome`
./bin/uv
Mamu Kim
ray.wurlod
Participant
Posts: 54607
Joined: Wed Oct 23, 2002 10:52 pm
Location: Sydney, Australia
Contact:

Post by ray.wurlod »

Tell is what it IS doing, if it's not taking you into UniVerse.

I suspect one of two things, either that you have not used cd to get to a project directory, or that you have not executed the dsenv shell script to set environment variables needed to run uv.

Once logged in, here's the sequence:
DSHOME=`cat /.dshome`
export DSHOME
. $DSHOME/dseenv
cd project_directory
$DSHOME/bin/uv
IBM Software Services Group
Any contribution to this forum is my own opinion and does not necessarily reflect any position that IBM may hold.
hassers
Participant
Posts: 14
Joined: Thu Dec 11, 2003 11:34 am
Location: Chester, UK

Run UV

Post by hassers »

1) When you sign onto the UNIX server you'll normally default to a user home account Eg. /home/dsadm

2) It worth copying a version of dsenv to this subdirectory and set priviledges (chmod 766) to run the set-up parameters.

3) Then type . ./dsenv to setup the DataStage environment settings within the run shell your currently using.

4) Now type cd $DSHOME to change to Ascential/DataStage/DSEngine
or the install subdirectory for DataStage

5) Now type bin/uvsh to invoke the shell


I assume you know the rest
8)
Thanks

Steve
MukundShastri
Premium Member
Premium Member
Posts: 103
Joined: Tue Oct 14, 2003 4:07 am

Post by MukundShastri »

Ok. Thanks .
I missed running dsenv.


Thanks
Post Reply