Search found 67 matches

by martin
Thu Jun 02, 2005 9:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: how to remove the duplicate records
Replies: 10
Views: 3240

hi amsh76,

You can Use RowProcCompareWithPreviousValue Rotine in SatgeVariable or as Contraint to remove duplictes.

GoodLuck :)
by martin
Tue May 10, 2005 8:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: checking for null values
Replies: 7
Views: 4175

Hi Bunny,

Your
IsNull(Feild1) And IsNull(Feild2) And IsNull(Feild3)
Will Work If All Feilds In a Entire Row Is Null
Instead If Go With
IsNull(Feild1) Or IsNull(Feild2) Or IsNull(Feild3)
Will Work If Any Feild In A Row Is Null

Try :lol:
Martin
by martin
Fri May 06, 2005 7:09 am
Forum: DSXchange Testimonials
Topic: Great Work
Replies: 10
Views: 42198

Ray..Duke....Chullte....Sainath......You Guys are Amazing .....Simply Great..... And This Forum......I have No Words to Say....Your Contribution To Your Fellow Developers Through This Forum......I Salute You All Guys.

Martin
by martin
Fri Apr 29, 2005 11:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: adding job parameter to many jobs
Replies: 6
Views: 1956

Hi Luk, I want to use in every 50 jobs 1 parameter (or maybe env variable as you said) but at the momement I have no parameters added in my jobs. I want have name and meaning of my parameter the same in each job but I want to set different default values to them and assign diffrent values to them be...
by martin
Fri Apr 29, 2005 9:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: based on previous record how to update record
Replies: 14
Views: 4533

Sorry.........This Will Not Pick 1st Row, In 100 rows Scenario with Similar Data This will Omitt 1st Row and retuns all rows from 2nd row(99 Rows).

Martin
by martin
Fri Apr 29, 2005 9:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: based on previous record how to update record
Replies: 14
Views: 4533

It doest care 100 rows, but RowProcCompareWithPreviousValue = 1 Will Pick 2nd row.I tested with your Sample input, Its picking 2nd row.

Martin
by martin
Thu Apr 28, 2005 6:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: based on previous record how to update record
Replies: 14
Views: 4533

Define RowProcCompareWithPreviousValue(DSLink3.HHID) = 1 as Transformation Statage CNSTRAINT This will retun 2nd record.
Remeber This Retun 2nd record not Last Record.

Martin
by martin
Thu Apr 28, 2005 3:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: based on previous record how to update record
Replies: 14
Views: 4533

Hi Reddy,

Try RowProcCompareWithPreviousValue.

All The Best
Martin
by martin
Thu Apr 21, 2005 11:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job accessed by another user
Replies: 9
Views: 3019

Hi knowds, Logon to DSAdmin(Make sure you have Admin Privilages) -> Choose Project -> Coomand Line -> run LIST.READU you will find Active Record Locks -> UNLOCK USER <userno> ALL or UNLOCK PID <pid no> ALL or UNLOCK Inode <Inode no> ALL. :lol: Your job is Unlocked. HaveFun Martin
by martin
Tue Apr 19, 2005 12:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Any reference book for Admin related stuff.
Replies: 6
Views: 1643

Hi talk2shaanc,

Logon to DataStage From Telnet Service and try HELP

All the best
Martin
by martin
Tue Apr 19, 2005 11:53 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job accessed by another user
Replies: 9
Views: 3019

Hi ketfos,

To unlock the DataStage job, execute the following command:

UNLOCK USER <Userno> ALL

Martin
by martin
Tue Apr 19, 2005 11:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Who is logged on DataStage
Replies: 9
Views: 3731

Sorry.......... Its STATUS not STSTUS
by martin
Tue Apr 19, 2005 11:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Who is logged on DataStage
Replies: 9
Views: 3731

Hi ewartpm,

From DS Admin -> Select Project -> Command line -> run LISTU / LIST.U / STSTUS.

Or

Using Telnet logon to DataStage Project and you can excute Universe commands

Martin
by martin
Tue Apr 19, 2005 10:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Who is logged on DataStage
Replies: 9
Views: 3731

Hi ewartpm

Try LISTU or LIST.U Universe command, This command display DataStage Users Sharing System.

Martin
by martin
Tue Nov 30, 2004 8:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Counting Duplicates
Replies: 14
Views: 4119

Hi vmcburney, Thanks For The Response.
svNewKey : input.f1:input.f2:input.f3:input.f4
svIsDuplicate : svNewKey = svOldKey
svOldKey : svNewKey
I want to count In svIsDuplicate

svIsDuplicate : If svNewKey = svOldKey Then +svIsDuplicate Else svIsDuplicate

Will This Work
Thanks
Martin