Search found 131 matches

by sri75
Fri Mar 21, 2008 8:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trigger DataStage Job through PeopleSoft Process Scheduler
Replies: 24
Views: 10267

Bare bones, add something like this to your script: cd `cat /.dshome` && . ./dsenv And let us know if that helps. Hi Craig,, still its not working and here is the code I gave cd `cat /.dshome` && . ./dsenv echo "DATE and Time Is:" date echo "Hello" dsadmin -listp...
by sri75
Fri Mar 21, 2008 7:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trigger DataStage Job through PeopleSoft Process Scheduler
Replies: 24
Views: 10267

add "-mode NORMAL" to your command. Hi Arnd/Craig.. I didnt mean to ignore you... If you look at my previous post,, in my code I have included "-mode Normal" in my command.. but still then it did not return any value or error code.. Here is the command we used in the shell scrip...
by sri75
Thu Mar 20, 2008 11:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trigger DataStage Job through PeopleSoft Process Scheduler
Replies: 24
Views: 10267

It's your script, not the 'application engine' stuff I would wager. And you completely ignored this from Arnd: I would start with adding "-MODE NORMAL" to the command line. But how about printing out stderr in your script as well? dsjob -run -mode NORMAL -jobstatus -wait HCM89_EPM90DEV SE...
by sri75
Thu Mar 20, 2008 10:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trigger DataStage Job through PeopleSoft Process Scheduler
Replies: 24
Views: 10267

mikegohl wrote:No, I can not send you my code.
I mean to say syntax..
by sri75
Thu Mar 20, 2008 10:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trigger DataStage Job through PeopleSoft Process Scheduler
Replies: 24
Views: 10267

mikegohl wrote:Yes it did work. I called DSJOB directly from the Application Engine Program. I also used a run control table to store the parms, project and job name. The app engine parsed the parms and formatted the dsrun job command. I did not use a script.
Can you send me your code?

Thanks a lot!!
by sri75
Thu Mar 20, 2008 10:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trigger DataStage Job through PeopleSoft Process Scheduler
Replies: 24
Views: 10267

Yes it did work. I called DSJOB directly from the Application Engine Program. I also used a run control table to store the parms, project and job name. The app engine parsed the parms and formatted the dsrun job command. I did not use a script. Great!! Here is the code which I am using in the app e...
by sri75
Thu Mar 20, 2008 9:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trigger DataStage Job through PeopleSoft Process Scheduler
Replies: 24
Views: 10267

mikegohl wrote:I did this before. I created an Application Engine Program with a run control page.
Did it work for you?

I am doing the same thing..created an Application Engine Program with a run control page... but it doesn't work..

I am getting return value as 127
by sri75
Thu Mar 20, 2008 9:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trigger DataStage Job through PeopleSoft Process Scheduler
Replies: 24
Views: 10267

Post your actual script - that can't be it. 'Project Name'? 'Job Name'? we have added some debug statements in the script.. here is the modiefied program dsjob -run -jobstatus -wait HCM89_EPM90DEV SEQ_J_Stage_PS_ABS_CLASS_TBL RETURN_VALUE=$? echo "Return Value $RETURN_VALUE" we are gettin...
by sri75
Thu Mar 20, 2008 9:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trigger DataStage Job through PeopleSoft Process Scheduler
Replies: 24
Views: 10267

Trigger DataStage Job through PeopleSoft Process Scheduler

Hello, We are trying to trigger ETL job through PeopleSoft Process Scheduler and here is the situation: Datastage and PeopleSoft both are on UNIX box and they are on same box. here is the shell script code we gave and name of the shell script file is test.ksh: #!/bin/ksh echo "DATE and Time Is:...
by sri75
Mon Mar 10, 2008 11:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: re running job
Replies: 6
Views: 2277

Thanks Kenneth for your suggestions.3rd option looks simple to me .I will try that.

Thanks Craig.
by sri75
Mon Mar 10, 2008 10:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: re running job
Replies: 6
Views: 2277

re running job

HI , I have 3 jobs, they run once in a month. Here my question is , If new record is inserted in any one of source tables in any day after it ran and before they run again in next moth, that particular job need to be run on that day. Is there any way to get this through unix script or datastage jobs...
by sri75
Thu Mar 06, 2008 8:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregating data
Replies: 4
Views: 1263

Thanks Ray for your suggestions.I will try it
by sri75
Wed Mar 05, 2008 12:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregating data
Replies: 4
Views: 1263

HI Kenneth,

Thanks for your reply. I don't need running total, i need total hours of week1 and week2 for particulat employee and total hours of all employees in week1 as well as week2


Thanks
Sri
by sri75
Wed Mar 05, 2008 12:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Aggregating data
Replies: 4
Views: 1263

Aggregating data

HI, I have source data like this Ubox empno week fri sat sun mon tue wed thu 134 111 1 2 3 3 0 0 0 0 134 111 2 1 2 1 1 2 3 4 134 222 1 1 2 5 1 4 5 6 134 222 2 4 3 4 5 6 7 8 I want the out pu tlike this Ubox empno week fri sat sun mon tue wed thu total gt 134 111 1 2 3 3 0 0 0 0 8 134 111 2 1 2 1 1 2...
by sri75
Wed Jan 30, 2008 12:57 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Opening &PH& Directory
Replies: 7
Views: 2785

Thanks throbinson.It worked perfect

Now I am able to open the directory.

Thanks