Search found 237 matches

by myukassign
Sat May 09, 2009 5:07 am
Forum: General
Topic: Installation Failure
Replies: 1
Views: 1444

Installation Failure

Hi I am installing Datastage client in my machine , during installation i got a warning saying that, you are having a heigher version of .net than 1.1. I ignored thiw warning and continued with installation in my Windows Vista. But unfortunatly after installation none of the clients is working or op...
by myukassign
Wed Apr 08, 2009 8:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ExecuteCommand stage not accepting semicolon
Replies: 3
Views: 1684

I second the use of "&&" as the command separator rather than a semi-colon. As noted, it requires the preceding step to complete successfully before allowing the next to execute, compare that to the semi-colon which blissfully passes execution down the line regardless of the mayhe...
by myukassign
Wed Apr 08, 2009 5:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ExecuteCommand stage not accepting semicolon
Replies: 3
Views: 1684

ExecuteCommand stage not accepting semicolon

Actully I want to use the Execute Command stage to club many commands and I am using ; to separate each command. e.g. rm -f *.txt; find /Myfold -name KeyFile.txt -size 0 -exec rm {} \;;mv a.txt b.txt The issue here is the find command should have a ; at the end of it, and my separator between the co...
by myukassign
Wed Dec 03, 2008 5:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Export - Through batch script
Replies: 4
Views: 2463

Job Export - Through batch script

Hi, I would like to take backup of my project everyday using an autoamted batch script scheduled to a windows scheduled task. I am using the following command to export it and it is working fine as well. It connect to my unix datastage server and do the export automatically. C:\Program Files\Ascenti...
by myukassign
Wed Nov 26, 2008 6:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exception Handler
Replies: 4
Views: 1828

No one will belive....

What a big mistake I did in my job and thats why it was not working :oops:

I doubt, I was sleeping while making that exception handler job :)

Washed face twice and re-design the job.... that's it... its strted working
by myukassign
Wed Nov 26, 2008 6:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSjob error
Replies: 3
Views: 1553

This is the error message I am getting

dsjob -logdetail DEV Validation -wave -0

Error -4 getting details for event 0

Status code = -4 DSJE_BADVALUE
by myukassign
Mon Nov 24, 2008 5:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DSjob error
Replies: 3
Views: 1553

DSjob error

I have a requirement to get all the logs of my last execution of the job using command line. dsjob -logdetail DEV Validation -wave -1 (Not working) dsjob -logdetail DEV Validation 805 806 (Working) Any idea why the fist one is not working. I cannot use the second one as I am not able to determine th...
by myukassign
Fri Nov 21, 2008 4:19 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exception Handler
Replies: 4
Views: 1828

Thanks for the reply. Let me clear one of my doubt. For example, I have a sequncer which has a job activity(simple transfer data form FileA to FileB) and also and exception handler. If the my job activity abort because of a File not found, then will it transfer the control to exception handler and t...
by myukassign
Thu Nov 20, 2008 11:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exception Handler
Replies: 4
Views: 1828

Exception Handler

I added an exception handler in my sequncer followed by a job. That job read some hash file and do some clean up. But what happens is, when an exception occurs, it gives control to the exception handler, it calles the job but not doing anything i specified in the job, just says finished oki, not rea...
by myukassign
Thu Nov 20, 2008 11:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compilation error
Replies: 2
Views: 1286

done.. permission issue
tnx
by myukassign
Wed Nov 19, 2008 11:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compilation error
Replies: 2
Views: 1286

Compilation error

Job1- Failed <<
Error writing to RT_CONFIG221 ( Job1)

I am not understanding the reason for this compilation error.

Any help will be appriciated
by myukassign
Tue Nov 18, 2008 9:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concurrency Issue
Replies: 3
Views: 1228

Concurrency Issue

I am observing a very rare issue at my production envioronment. The situvation is like this. SeqA and SeqB has one subroutine which update a common file. At some rare case I am getting a fatal error from routine "(fatal error from GetArchiveSeqNo): 9 Unable to open file" . This kind of pro...
by myukassign
Tue Nov 18, 2008 3:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Trace Job Deletion
Replies: 9
Views: 3076

Got it....

That solved my issue
by myukassign
Tue Nov 18, 2008 3:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Log Corrupted
Replies: 15
Views: 6820

It worked!!
by myukassign
Mon Nov 17, 2008 6:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exit condition in Jobcontrol
Replies: 1
Views: 925

Exit condition in Jobcontrol

I have written the following code in the Jobcontrol of a Server job. I would like to know, how can I exit from the job control if I meet a specific criteria. I mean in the following code, if it is a normal exit, i should exit after the normal exit. 'Return' is not working here. Any idea what should ...