With the help of this script, You can get the job no, category and other information without opening DataStage Director.
This Script need two arguments :
1. DataStage Project Name
2. DataStage Job Name
Script :
============================================================================
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Script Name - DSgetJobNo.sh | |
# Developer - Atul Singh | |
# Description - This script query on the Datastage UV DB | |
# and get the internal job no and catagory assigned to job | |
# Date - Feb 25, 2014 | |
# Plateform - AIX,LINUX, UNIX, Solarix and all NIX | |
#!/bin/ksh | |
##!/bin/sh | |
. /opt/IBM/InformationServer/Server/DSEngine/dsenv > /dev/null 2>&1 | |
DSProject="$1" | |
DSJob="$2" | |
if [[ -z "$DSProject" || -z "$DSJob" ]]; then | |
echo "\nUsage: $0 <DSProject> <DSJob>\n" | |
exit 1 | |
fi | |
echo "Job Info for job(s): \"$DSJob\" in project: \"$DSProject\"..." | |
export DSHOME=`cat /.dshome` | |
cd $DSHOME | |
./bin/uvsh << EOF 2> /dev/null | |
LOGTO $DSProject | |
SELECT @ID FMT '80L', CATEGORY FMT '80L', JOBNO FROM DS_JOBS WHERE NAME LIKE '%$DSJob%' OR JOBNO = '$DSJob' ORDER BY NAME; | |
EOF | |
Please let me know if facing any issues with script while running/executing.
Visit this also -
Know your DataStage Jobs Status without Director
The dsenv should be called after variable assignment, as the positional arguments might change if any script is called within dsenv with arguments. Also the variable declaration must be the first in all the scripts.
ReplyDeleteThe script should work fine in Solaris/Unix, but in AIX the above said scenario will happen. Btw it's a nice script, I use the UV snippet to get category information
ReplyDelete