Search found 4 matches

by w126
Fri Oct 31, 2008 12:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset Failure
Replies: 7
Views: 1559

Reset/validate of DS Job will invoke the Call Statement . inoder to see that the Store pRoc is Not executed you need to pass a variable so that Store Proc Knows whether u are Resting or Running a Normal Run
by w126
Wed Oct 22, 2008 9:06 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset Failure
Replies: 7
Views: 1559

Before Opening a Ticket i just want to make sure will the Reset/validate of DS Job invoke the Call Statement
by w126
Tue Oct 21, 2008 11:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset Failure
Replies: 7
Views: 1559

this is one we are using for the Reset
$ENV{DSTAGE_EXE}/dsjob -run -mode RESET -wait $project_nm $job_nm1`;

For the Run We are using

`$ENV{DSTAGE_EXE}/dsjob -run -mode NORMAL -wait -jobstatus $job_param1 $project_nm $job_nm1`;

While Reset it is Taking the Params from the Previous Run
by w126
Tue Oct 21, 2008 11:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reset Failure
Replies: 7
Views: 1559

Reset Failure

we have serverjob where we use an ODBC to connect to Sql Server and the job is designed in such a way that it runs a store procedure. we run this job using a perl script .Based on the previous status of the job it will wither Reset and Run the Job or Directly Runs the Job. The Issue with our job is ...