Search found 17 matches

by shyamrai
Tue Aug 14, 2007 3:29 pm
Forum: General
Topic: Datastage Job Hangs
Replies: 4
Views: 2338

Can I know how to replace the database output stages.

I am sorry I was not clear on my previous email.

I am having this issue basically for loading files from input files with large number of data into the database.

The issue is even with loading data from the hash files
by shyamrai
Tue Aug 14, 2007 2:08 pm
Forum: General
Topic: Datastage Job Hangs
Replies: 4
Views: 2338

Datastage Job Hangs

WHen I run the Datastage jobs, they are either hanging or aborting.

When I look into the monitor of the jobs which are running for a long time, I see that the time count increasing, but the num rows is still the same. Can I know how to trouble shoot this issue.
by shyamrai
Wed Jun 27, 2007 9:55 pm
Forum: General
Topic: Error running a batch file
Replies: 12
Views: 7759

[quote="ray.wurlod"]You are also missing a command. The [i]bin [/i]folder contains the executables; it isn't one itself.[/quote]

Can I know what might be the command I am missing
by shyamrai
Wed Jun 27, 2007 9:53 pm
Forum: General
Topic: Error running a batch file
Replies: 12
Views: 7759

[quote="ArndW"][quote="shyamrai]...it gave a return as "''D:Ascential\DataStage\Engine\bin'...[/quote]
You are missing a "" in the 3rd position[/quote]

I am sorry, it was actually set as 'D:\Ascential\DataStage\Engine\bin
by shyamrai
Wed Jun 27, 2007 4:07 pm
Forum: General
Topic: Error running a batch file
Replies: 12
Views: 7759

[quote="ray.wurlod"]Control Panel, System applet, Environment command button PATH (maybe Path) is a System variable. Select it and edit it to include the pathname of the DataStage Engine [b]bin [/b]directory (and of the PXEngine [i]bin [/i]directory if you have Enterprise edition). Tip: co...
by shyamrai
Wed Jun 27, 2007 2:36 pm
Forum: General
Topic: Error running a batch file
Replies: 12
Views: 7759

But still I am getting the same error when I am scheduling it through TWS. But when I am directly executing the batch file, it is running the datastage job.
May I know how is it possible to make it permanent through Control Panel or login script.
by shyamrai
Fri Jun 22, 2007 7:33 am
Forum: General
Topic: Error running a batch file
Replies: 12
Views: 7759

I was able to define the path which was not present Check for the Path in command prompt. If you donot find the path where dsjob.exe is present, goto My Computer ->Properties, Advanced Tab -> Environment Variables, look for PATH under Variable and add the path=D:\Program Files\Ascential\DataStage7.5...
by shyamrai
Thu Jun 21, 2007 2:50 pm
Forum: General
Topic: Error running a batch file
Replies: 12
Views: 7759

chulett wrote:PATH issue, as in the directory where dsjob lives is not in your production PATH environment variable.
I have found dsjob.exe in the path D:\Program Files\Ascential\DataStage7.5 in Production.

I also found it present in the test.

Can I know what should I be checking other than this.

Thanks
by shyamrai
Wed Jun 20, 2007 2:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Return a Job abort
Replies: 9
Views: 3957

[quote="DSguru2B"]You need to design your sequence that way then. Stick in an exception handler connected to a terminator activity. Do not handle the scenario in which the job finishes with warnings, in the conditional trigger. This way if a job finishes with warnings, the control will go ...
by shyamrai
Wed Jun 20, 2007 1:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Return a Job abort
Replies: 9
Views: 3957

You can set the warnining limit in the UtilityRunJob() to 1. So that your sequence job inherits this property and passes it down to the children jobs. This way, even if there is a single warning, your jobs will abort. But I am not sure about the entire design, but then again, thats not the topic of...
by shyamrai
Wed Jun 20, 2007 12:50 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Return a Job abort
Replies: 9
Views: 3957

The UtilityRunJob in the Transformer is given as the following. UtilityRunJob('SubMasterLoadBWFiles','MeridiumApplicationServer=' : ToSubMasterLoadBWFiles.Meridium_Application_Server : '|MeridiumDatasource=' : ToSubMasterLoadBWFiles.Meridium_Datasource : '|MeridiumUserId=' : ToSubMasterLoadBWFiles.M...
by shyamrai
Wed Jun 20, 2007 11:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Return a Job abort
Replies: 9
Views: 3957

Return a Job abort

The jobs are designed such that there is a Datastage job(level 3) that is called by the sub master job(level 2). The sub master job is called by the master job.These master jobs(Level 1) are not in Job Sequence but they are run in Server Job. In the master job and the sub master jobs we are passing ...
by shyamrai
Mon Jun 11, 2007 3:16 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tivoli Schedule
Replies: 9
Views: 7208

I have given the following code and this seems to work fine while scheduling through TWS

@echo OFF

dsjob -run -jobstatus -Project -Job

echo ERRORLEVEL %ERRORLEVEL%

IF ERRORLEVEL 1 SET ERRORLEVEL=0

IF ERRORLEVEL 2 SET ERRORLEVEL=0
by shyamrai
Mon Jun 11, 2007 10:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tivoli Schedule
Replies: 9
Views: 7208

We are using the batch files and not the shell scripts to call the DataStage Jobs.
by shyamrai
Mon Jun 11, 2007 9:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Tivoli Schedule
Replies: 9
Views: 7208

I have contacted the tivoli scheduling team and they have said that it will not be possible for them to set up the status on a case-by-case basis. Do you think I should be adding any error handling syntax in the code which I have written earlier so that it would change the status at the end of the j...