Search found 5168 matches

by kumar_s
Sun Jun 18, 2006 11:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Picking first 11 records in a Transformer
Replies: 3
Views: 1057

If it is PX and if you need first 11n distinct records based on the two field, you have many approach, like using remove duplicate stage in conjunction with transformer, or sort stage with the KeyValueChange option.
But you need to give out more information of what is you exactly need in?
by kumar_s
Sun Jun 18, 2006 11:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Why checkpoint and restart doesn't work?
Replies: 14
Views: 3893

That way I can generate my own restart capability that might, for example, include unwinding updates from the previous run, sending specific emails to users and so on. Building up of own job control rather than job sequence would do. You can check for the return status of the job is stopped DSJ.JOB...
by kumar_s
Sun Jun 18, 2006 11:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Char / varchar reading and trimming trailing Nulls char(0)
Replies: 7
Views: 2329

Try the convert after setting APT_PADCHAR to ' ' (Space).
You can optionally perform the tr in the filter command if its a sequential file or in External filter stage if the source is database.
by kumar_s
Sun Jun 18, 2006 11:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning in XML
Replies: 5
Views: 1392

Are you trying to feed default null value as '' to output Decimal field?
by kumar_s
Sun Jun 18, 2006 10:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: transformer compile error
Replies: 8
Views: 2926

##W TBLD 000000 02:51:08(005) <main_program> Error when checking composite operator: Output from subprocess: sh: /usr/vacpp/bin/xlC_r: not found.

Is it the first time you are trying to compile, It also seems that C++ complier is not installed properly.
by kumar_s
Sun Jun 18, 2006 10:44 pm
Forum: Site/Forum
Topic: CONGRATS DSGURU
Replies: 13
Views: 5712

I hope all the appreciation boost you to contribute more.

Aim at moon... Humm..

Aim at Ray, if missed, you can reach Craig :wink:
by kumar_s
Fri Jun 16, 2006 9:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Deleting records
Replies: 18
Views: 2954

I have no option to try now, but may I know what is the interesting SQL generated? Where my guess goes like, first datastage tries to insert the row and due to constraints it fails, and later tring to delete the row, and so deleting the left out table row.
by kumar_s
Fri Jun 16, 2006 9:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job status shows Running since many hours
Replies: 10
Views: 1585

The latest log could have given you the information where the job is waiiting. Any useful message from that.
by kumar_s
Fri Jun 16, 2006 9:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem with Extract SQL query with LongNVarchar filed.
Replies: 3
Views: 1159

Did you got any other error?
Have you tried to get partial data by substr() fn, so that you can come to a conclusion whether the length is the only matter.
by kumar_s
Fri Jun 16, 2006 6:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in joining 2 tables
Replies: 12
Views: 2648

bondcaliwood wrote:If the tables are not in the same database load them both into temp staging tables in the same database and perform join in there.

Still it will run for long if row are large in numbers.
by kumar_s
Fri Jun 16, 2006 6:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: including reason of rejection of row in reject file
Replies: 8
Views: 2082

Still lacking information. If your target is database and if you collecting the information on the reject records, the way ray sais would do. Add another column where you can supply the link variables to get more information. Allong with that you will have the rejected record as well. Not sure what ...
by kumar_s
Fri Jun 16, 2006 6:11 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update action with condition in sequential file
Replies: 11
Views: 2629

It is not possible. Refer this similar post.
by kumar_s
Thu Jun 15, 2006 9:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: setup -ds users
Replies: 5
Views: 1616

Check the option avaialble in Permission tab "DataStage operator can view full log" in DS Adminstrator client.
by kumar_s
Thu Jun 15, 2006 9:37 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Generate timestamp only if condition met.
Replies: 15
Views: 5951

Atlast the option you chosed was the work around provided by Ascential support :wink:
by kumar_s
Thu Jun 15, 2006 9:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem in joining 2 tables
Replies: 12
Views: 2648

Which is very similar ot Cartesian product by using Join stage.