Search found 85 matches

by sudhakar_viswa
Tue Sep 07, 2010 6:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Special Characters In Stage Variables.
Replies: 4
Views: 2884

Re: Special Characters In Stage Variables.

Hi,

What is the Special Character there.

Thanks & Regards,
Sudhakar
by sudhakar_viswa
Wed May 07, 2008 4:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Requesting delayed metadata or Logging delayed metadata.
Replies: 6
Views: 9585

Hi,

I think you did some changes at database and not fired the Commit Statement. Check this scenario...

Regards,
-- sudhakar
by sudhakar_viswa
Sun Oct 28, 2007 10:30 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User status in parallel
Replies: 8
Views: 7728

Hi Saraswati, You need to pass the no.of records of a file into the job as a parameter. So, in sequence use the Execute Command activity to count the no.of records in a file. And in the job activity of other job specify Execute Command activity. command_output to count parameter of that job. Regards...
by sudhakar_viswa
Thu Oct 25, 2007 6:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: User status in parallel
Replies: 8
Views: 7728

Hi,

I did not understand properly. Can you explain some more elaboratedly.

Regards,
-- sudhakar
by sudhakar_viswa
Fri Oct 19, 2007 6:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ranking system in Data stage
Replies: 3
Views: 1752

Hi,

By using stage variables u can get this result.

Regards,
-- sudhakar
by sudhakar_viswa
Fri Oct 19, 2007 6:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with Decimal Field conversion during output
Replies: 4
Views: 2095

Hi,

Use numeric function to round the value.
Else convert into char and send it

Regards,
-- sudhakar
by sudhakar_viswa
Mon Jul 23, 2007 3:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Records Dropped
Replies: 16
Views: 5691

Hi SHIVARANJANI, Here i have one more way to resolve this problem. That is Put the following condition for LAST_UPDATE_DATE column derivation in Transformer stage. If IsNull(<<link_name>>.LAST_UPDATE_DATE) Then SetNull() Else <<link_name>>.LAST_UPDATE_DATE Regards, -- sudhakar
by sudhakar_viswa
Mon Jul 09, 2007 11:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failure during execution of operator logic
Replies: 2
Views: 1839

Hi Sanjay,

Thanks for your reply. Now, it is working by your idea.
I just want to know why it is giving for that number only(for those many digits), for other numbers it is working properly.


Thanks,
-- sudhakar
by sudhakar_viswa
Mon Jul 09, 2007 4:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Failure during execution of operator logic
Replies: 2
Views: 1839

Failure during execution of operator logic

Hi, I am reading string value -300000000000.0000 from oracle9i and loading to oracle9i database. The target column datatype is number(38,10). While loading this data i am getting following fatal error. Failure during execution of operator logic. APT_CombinedOperatorController,0: Internal Error: (byt...
by sudhakar_viswa
Mon Jul 09, 2007 1:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: got Job aborted message, but?
Replies: 3
Views: 1924

Hi anwarsait,

The one of the job in batch is not in runnable state. Try to specify invocation ID and run it. Because one job is used by many other sequences at that time this error will occur.

Regards,
-- sudhakar
by sudhakar_viswa
Mon Jun 18, 2007 5:58 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to run job --2
Replies: 5
Views: 4116

Hi Ray,

In logs it is showing as it is occuring in transformer.

Thanks,
-- sudhakar
by sudhakar_viswa
Mon Jun 18, 2007 4:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to run job --2
Replies: 5
Views: 4116

Unable to run job --2

Hi,

I am getting the follwoing error in Parallel edition.

unable to run job --2

The above fatal error is occuring in Transformer (both Transformer and basic Transformer).


Thanks,
-- sudhakar
by sudhakar_viswa
Wed Jun 13, 2007 12:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding Notification Activity
Replies: 3
Views: 2185

Regarding Notification Activity

Hi,
I have to send a email notification to the parameter file (in parameter file we listed some of the reciptents names)
by sudhakar_viswa
Thu Mar 29, 2007 5:43 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decode function
Replies: 5
Views: 3956

Hi, I forgot to specify % in date format. If IsNull(job.empl_status) Then SetNull() Else If job.empl_status="D" Then If IsNull(pers.dt_of_death) Then DateToString(job.effdt,"%mm%dd%yyyy") Else DateToString(pers.dt_of_death,"%mm%dd%yyyy") Else SetNull() Regards, -- sudha...
by sudhakar_viswa
Thu Mar 29, 2007 5:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Decode function
Replies: 5
Views: 3956

Hi, If IsNull(job.empl_status) Then SetNull() Else If job.empl_status="D" Then If IsNull(pers.dt_of_death) Then DateToString(job.effdt,"MMDDYYYY") Else DateToString(pers.dt_of_death,"MMDDYYYY") Else SetNull() If job and pers are not link names then you need to add the l...