Search found 5168 matches

by kumar_s
Tue Jun 27, 2006 8:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: need sql help for select min
Replies: 23
Views: 29028

Ok I'm agree with you that I'm not very explicit and I didn't mentionned the error message . But It's not stupid to switch to using an other method, It can be interesting for Dsxians to know the different solution of a request ... HI kjaouhari, It is no wehere mentioned as stupidity to switch betwe...
by kumar_s
Tue Jun 27, 2006 8:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to use exception handler in seequence
Replies: 3
Views: 1075

If any activity aborts in the JobSequence, the control comes to the ExceptionActivity stage and its consicutive stage for action. As Craig mentioned you can use to contorl to notify or alert.
by kumar_s
Tue Jun 27, 2006 8:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Last row in a Sequential file
Replies: 4
Views: 1269

Use this in a command activity prior to the job being called, and pass the output as parameter.

Code: Select all

wc -l <filename> | cut -f1 -d ' '
by kumar_s
Tue Jun 27, 2006 8:25 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Logic for finding sequence Gap
Replies: 8
Views: 1174

How many records will be there in the gap? If the number of record in the gap is less, say 1 or 2 or 3 it ok, else you need to have that many stage variable to hold the values to compare and give as output. For that case, you can build you own custome stages or routien to have the looping funtion in...
by kumar_s
Tue Jun 27, 2006 8:13 am
Forum: Site/Forum
Topic: Inactive DSXchange users.
Replies: 5
Views: 2675

These process can be taken once the maintanance of the user ids become difficult and tedious. Because this good numbers may boost up the add for the site.

IMHO.
by kumar_s
Tue Jun 27, 2006 8:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Aggregator stage
Replies: 3
Views: 778

You can use your user defined select query as

Code: Select all

select a.empno, a.ename , a.dept , (select sum(b.sal) from tablename b where a.dept = b.dept group by b.dept) As SAL from tablename a
by kumar_s
Tue Jun 27, 2006 8:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Capture the error records
Replies: 5
Views: 1207

But Iam sure you can manually make a conditional check for the duplicates to get rejected using transformer.
by kumar_s
Tue Jun 27, 2006 7:59 am
Forum: Site/Forum
Topic: Congrats Kumar
Replies: 10
Views: 3975

Thanks Roy, Krrish , opda..... :)
All your words encourages me a lot. :D
(To reach Roy soon :lol: )
by kumar_s
Tue Jun 27, 2006 1:00 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: PX warning in Oracle Enterprise stage
Replies: 14
Views: 6702

I have seen this when using CFF with many levels of records.
Do you use transformer in between?
by kumar_s
Tue Jun 27, 2006 12:41 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to get Job Type (Sequence, Server or EE Job)
Replies: 8
Views: 1394

You have JOBTYPE in DS_JOBS to indicate this.

Server jobs - 0
JobSequnce - 2
PX Jobs - 3
by kumar_s
Mon Jun 26, 2006 9:10 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What is the difference between Reset and Clear Status file
Replies: 3
Views: 2148

Clearing the status would be more dangerous than reseting. By CLEARing the status, the status might have turned to Reset, but at background the process would still be running or still have the connection open. Which will be one of the cause for a zombie process to be created. Which will inturn creat...
by kumar_s
Mon Jun 26, 2006 9:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: generating a single row from multiple rows
Replies: 7
Views: 1241

Not LAST but Maximum option it left out in aggregator.
Or simply SORT it based on the key and mark Allow Duplicate = False.
by kumar_s
Mon Jun 26, 2006 9:01 am
Forum: Site/Forum
Topic: Congrats Kumar
Replies: 10
Views: 3975

Thanks Chuck :wink: I know you will be waiting for this turn. :lol:
Here the Nos doesnt matter. Still I need to learn a lot from them.
by kumar_s
Mon Jun 26, 2006 8:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: run time fatal error : Player 12 terminated unexpectedly
Replies: 23
Views: 9040

For this "Intermittent Problems" a patch has been relased by Ascential. But that too only for customers who asks for it. Else the general solution from the support team would be to turn of the monitor.
by kumar_s
Mon Jun 26, 2006 3:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: filter strings from number
Replies: 4
Views: 1049

This can be easily acheived by CONVERT() function in datastage. But not sure what are you trying to do with "other than the Datastage inbuit functions "