Search found 224 matches

by attu
Thu Nov 08, 2007 7:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: routine failed
Replies: 3
Views: 1165

Gentlemen:

we had to change the owner and set permissions for the DSU_BP.O.
it is working fine.

Thanks for your responses.

Have a good one.
by attu
Wed Nov 07, 2007 9:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: routine failed
Replies: 3
Views: 1165

routine failed

When trying to compile a routine, it is failing because of this error

Code: Select all

basic: Can't open object file 'DSU_BP.O/DSU.Myroutine'
[EACCES] Permission denied
Any help is appreciated...

Thanks
by attu
Fri Oct 12, 2007 2:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: jobmon port
Replies: 2
Views: 907

Re: jobmon port

kris wrote:
attu wrote:Hi i have a question, do we need to define the jobmon port 13401 in etc/services like we do for datastage port 31538?

Thanks
The defaults are 13400 and 13401. You don't have to do anything in particular unless there are other applications are using these ports.
Thanks Kris
by attu
Fri Oct 12, 2007 11:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: jobmon port
Replies: 2
Views: 907

jobmon port

Hi i have a question, do we need to define the jobmon port 13401 in etc/services like we do for datastage port 31538?

Thanks
by attu
Thu Oct 04, 2007 8:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: uv command
Replies: 2
Views: 1054

uv command

if I only know a jobname , how can I know which project it belongs to using UV command?

Thanks
by attu
Wed Sep 05, 2007 7:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compiler version -HP UX
Replies: 12
Views: 2689

Thanks Ray, Andrw, Chulett and all.
by attu
Tue Sep 04, 2007 11:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compiler version -HP UX
Replies: 12
Views: 2689

sud wrote:It is the aCC compiler for HP.
Sud, how will I find it using the unix command.
by attu
Fri Aug 31, 2007 12:57 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compiler version -HP UX
Replies: 12
Views: 2689

compiler version -HP UX

unix command line for determining C++ compiler version on HP-UX

Code: Select all

lslpp -l | grep xlC 
is only working for aix. what is it for hp -ux

Thanks
by attu
Wed Aug 29, 2007 12:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ds.tools
Replies: 5
Views: 1892

Thanks guys.
by attu
Tue Aug 28, 2007 7:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ds.tools
Replies: 5
Views: 1892

ds.tools

how to add ds.tools in voc?

Thanks in advance
by attu
Tue Aug 28, 2007 8:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: compiler version for HP UX
Replies: 2
Views: 830

compiler version for HP UX

Hi , just wondering what is the command for finding the c++ compiler installed for datastage 7.5.1 from HP-UX command line.
Thanks
by attu
Thu Jul 05, 2007 7:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: shell script for dsjob command
Replies: 5
Views: 3541

chulett wrote:Because you are exporting the final 'command string' not actually executing it.

Change:

Code: Select all

export cmdstring
To:

Code: Select all

eval ${cmdstring}
and see if that works more better.
Thanks Chulett, it worked.
by attu
Tue Jul 03, 2007 3:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: shell script for dsjob command
Replies: 5
Views: 3541

When I am trying to get the parametrs for my job froma project the script is not giving the required output. *************************************** #!/usr/bin/ksh project=devtest export project jobname=test1 export jobname DSBIN=`cat /.dshome`/bin export DSBIN cd `cat /.dshome` . ./dsenv DSCMDEXE=&...
by attu
Tue Jul 03, 2007 3:15 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: shell script for dsjob command
Replies: 5
Views: 3541

script.sh[2]: devtest: not found means line #2 has an error (probably the space after the = sign) Also consider using explicit hostname, userid, and password notation with dsjob. Yup , it worked, but i didnt use the hostname, userid or password. BTW what would the syntax be dsjob -ljobs hostname us...