Search found 6 matches

by mandar84
Wed Jul 22, 2009 6:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference in Job Export (.dsx file)
Replies: 5
Views: 1625

Hi, I tried as suggested(force compile), but no success.
by mandar84
Wed Jul 22, 2009 5:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference in Job Export (.dsx file)
Replies: 5
Views: 1625

Yes, that right...its present on on file and not on other. As requested the code from the file is as - if ((trim_leading_trailing(StageVar0_SVar1) == InterVar0_29)) { NullSetVar0 = 1; } else { Link_Name.Col_Name = trim_leading_trailing(StageVar0_SVar1); } Link_Name.Col_Name = (NullSetVar0 == 1) ? se...
by mandar84
Wed Jul 22, 2009 4:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Difference in Job Export (.dsx file)
Replies: 5
Views: 1625

Difference in Job Export (.dsx file)

Hi, I have taken export of the same Job from two different locations (servers). When I ran compare utility on these export files, I found a few messages in one of the files like- Link_Name.Col_name = (NullSetVar0 == 1) ? set_null() : Link_Name.Col_name; There were other columns as well for which sam...
by mandar84
Tue Jul 14, 2009 2:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Control M characters in Sequential File
Replies: 9
Views: 8969

As an alternative, try using $APT_STRING_PADCHAR enviroment variable in you Job Parameter list and set it to 0x20(space)
by mandar84
Tue Feb 17, 2009 5:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting Job Elapsed time using shell script
Replies: 3
Views: 2272

If the Job is run multiple times(more than one log entries for Job run)...it is showing start time of the first run and end time of the last run.
by mandar84
Tue Feb 17, 2009 4:51 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Getting Job Elapsed time using shell script
Replies: 3
Views: 2272

Getting Job Elapsed time using shell script

I am trying to get the elapsed times for a list of DS Jobs using a shell script. The command used is - ExecTime=`dsjob -server :$Server -report $Project $JobName |grep "Job elapsed time="` The problem is...this is showing incorrect results. Can anyone please suggest some other way(routines...