cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Duplicate Records

Former Member
0 Likes
467

HI Group,

In File to File Scenario how to avoid duplicate records

View Entire Topic
Former Member
0 Likes

HI,

I hope you have to write one User defined function ...

Please try

take queue function ..

Vector vProd = new Vector();

for (int i =0;i.<a.length;i++){

if(!vProd.contains(a<i>)) vProd.add(a<i>);

}

Collections.sort(vProd);

for(i=0;i<vProd.size();i++){

result.addValue((String)vProd.get(i));

}

input is String[] a

please let me know if any queries..

Regards

Chilla..