Search found 5168 matches

by kumar_s
Mon Apr 03, 2006 6:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Table through DB2 Enterprise Stage
Replies: 13
Views: 4914

You mean Preserve partition flag or the type of partition?
by kumar_s
Mon Apr 03, 2006 6:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can i get all the jobs name in a sequence
Replies: 23
Views: 12193

Yea... now i could get the list with simple select query. But I dont know why the same didnt worked previously. :oops:
by kumar_s
Mon Apr 03, 2006 6:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unknown Fatal Error
Replies: 10
Views: 2020

gcmeyer3483 wrote:That is correct. There is a Fatal error without a message.

Thats quite odd.
Pls check from director whether you get the same result.
by kumar_s
Mon Apr 03, 2006 6:17 am
Forum: Site/Forum
Topic: Congratz Roy!!!!
Replies: 6
Views: 3004

Congratz Roy!!!!

Another Benchmark.
Making up 2000 posts to the forum.
And rendering a great help as moderator.
We wish your service to continue with the same full extend.
by kumar_s
Mon Apr 03, 2006 5:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Frequently faced errors
Replies: 2
Views: 684

Well.... the Search facility is for the same reason.
This forum is logged full of different errors faced by different persons.
And the you can also find the solutions and reasons for the same.
Wish you a Happy Searching. :lol:
by kumar_s
Mon Apr 03, 2006 5:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unknown Fatal Error
Replies: 10
Views: 2020

gcmeyer3483 wrote:That is what makes this even more difficult to debug.

Do you mean there isnt any message.
by kumar_s
Mon Apr 03, 2006 5:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Error While Executing a UnixScript from DataStage
Replies: 3
Views: 1084

/dstage/development/scripts/EXCEPTION_RUN.sh: seq_ntwx_email_script_ph2.sh: not found


Make sure the path is given correctly.
Check the permission for the given shell.
Check the permission for the current user to that shell.
by kumar_s
Mon Apr 03, 2006 5:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Unknown Fatal Error
Replies: 10
Views: 2020

There is any the fatal message at Even Id 5 :shock:
by kumar_s
Mon Apr 03, 2006 5:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Director Client hangs while trying to view the log files
Replies: 11
Views: 2636

Filtering the log should also help.
by kumar_s
Mon Apr 03, 2006 5:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can i get names of nmulti-instance jobs..
Replies: 3
Views: 975

Alternativly from command prompt you can use

Code: Select all

dsjob -linvocations <project> <jobname> 
to get the list of invocations.
by kumar_s
Mon Apr 03, 2006 5:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Director Client hangs while trying to view the log files
Replies: 11
Views: 2636

dsjob -log is to write a log to the log file and not to retrive. Rather dsjob -logdetail <Project name> <jobname> or dsjob -logsum <project> <job> can be used to check whether the logs in the RT_LOGnnn file for the respective job is reteivalbe. Else try clearing the log and recheck.
by kumar_s
Mon Apr 03, 2006 5:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can i get all the jobs name in a sequence
Replies: 23
Views: 12193

Iam not sure what is the feild which will help to identify the dependcy among the job in DS_JOBOBJECTS. I could not find a use full output form 'DEPENDS' feild in DS_JOBOBJECTS. But dsjob -logdetail for the main sequence will give you the full log. If you manage to grep within the log you can find t...
by kumar_s
Mon Apr 03, 2006 4:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job status of Multi-Instance job..
Replies: 6
Views: 1156

Invocation list can be easily found by

Code: Select all

dsjob -linvocations <jobname>
by kumar_s
Mon Apr 03, 2006 1:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job status of Multi-Instance job..
Replies: 6
Views: 1156

dsjob -jobinfo <project name> <job name> if executed as soon as the job is executed with the invocation id. Else it may not be much useful, since you will have the status of latest invocation. But you can grep from dsjob -logdetail <project name> <jobname> <even start id> <event end id> You also ha...