Search found 5168 matches

by kumar_s
Wed Mar 29, 2006 9:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need Help to set the counter
Replies: 5
Views: 1399

I havnt checked Current and previous SCODE but only SCODE <> 09. Can you please provide your values inputs on how to achieve the last two records scenario? thanks As long as the current SCODE = 09, the value for CNT_TOTAL will be 0. Which will be acheived by the stage variable condition 'CNT_TOTAL ...
by kumar_s
Wed Mar 29, 2006 9:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Anybody ever recieve a 'Player Terminated' error? (REPOST)
Replies: 3
Views: 1145

Pls post the full log. What are all the stages used?
There should be a warning message before/after this fatal error.
The player process responsible for the update action in the given node got teminated due the error which is not provided.
by kumar_s
Wed Mar 29, 2006 9:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Row to Column Pivoting
Replies: 9
Views: 2209

Its a typical Pivot. As mentioned Pivot Stage should be enough to accomplish this if the number of occurance is constant. Plugin for Pivot stage should be available i CD if not installed initially.
If the occurance is not constant the sencond approach would be apropriate.
by kumar_s
Wed Mar 29, 2006 9:20 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need Help to set the counter
Replies: 5
Views: 1399

I havnt checked Current and previous SCODE but only SCODE <> 09.
by kumar_s
Wed Mar 29, 2006 9:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Append Row Count to File
Replies: 7
Views: 1076

If you dont mind adding another routine after the job, you can make use of LinkInfo to calculate the number of records passed in each link and append to the each file. If you want to accomplish in a same job, you need to process all the data into the aggregator to find the max of it. This may likely...
by kumar_s
Wed Mar 29, 2006 9:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compilation Error RT_CONFIG89
Replies: 9
Views: 2307

The change you made in dsdlockd config is to avoid deadlocks. It may be use ful if you often get 'Cannot get Exclusive access ....', but apart from this, is there any other changes recomended from Ascential?
by kumar_s
Wed Mar 29, 2006 9:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: derivation in parameter
Replies: 4
Views: 956

Alternativly you can process the desired outcome in a job or routine and pass it as UserStatus to the Job Activity.
by kumar_s
Wed Mar 29, 2006 9:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need a logic
Replies: 2
Views: 610

You can reject using filter or transformer based on given two different condition into two files. And you can raise the error or waring based on the number of records passed to the link. This can also be post processed. You can make use of DSLogWarn or DSLogInfo to give useful inforamtions.
by kumar_s
Wed Mar 29, 2006 8:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle error in parallel job
Replies: 6
Views: 1497

Is it oracle 10g.
Are you trying to access or drop a table which is already droped.
What you get if you issue

Code: Select all

select * from user_recyclebin
from command prompt?
by kumar_s
Wed Mar 29, 2006 8:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need Help to set the counter
Replies: 5
Views: 1399

Use stage variable method.

Code: Select all

MNO_CUR = Inlink.MNO
PNO_CUR = Inlink.PNO
SCODE_CUR = Inlink.SCODE
CNT = Inlink.CNT
CNT_TOTAL = If (MNO_CUR = MNO_PRV And PNO_CUR = PNO_PRV And SCODE_CUR <> 09) CNT_TOTAL + Inlink.CNT Else 0
MNO_PRV = MNO_CUR
PNO_PRV = PNO_CUR
by kumar_s
Wed Mar 29, 2006 8:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Ghost information in job dsx file
Replies: 7
Views: 2631

What is changed exactly?
Is the name of the table changed?
Are you sure there is not other stages using that particular table name. Even annotation used to point out the usase will be reflected in dsx.
The other way to find the stages usage analysis would be
http://www.dsxchange.com/viewtopic.php? ... highlight=
by kumar_s
Wed Mar 29, 2006 5:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Consecutive runs of same jobs with Toggled filenames
Replies: 6
Views: 1593

If number of iteration is know, the job can be made as multiple instance and individual parameters with different values can be passed.
by kumar_s
Wed Mar 29, 2006 4:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Format
Replies: 4
Views: 1199

It cannot be read as Date data type.
Date requires %yyyy. Rather you can read as Char field and convert it into date in any consicutive transformer.