what is deeup in unique only?

Answers were Sorted based on User's Feedback



what is deeup in unique only?..

Answer / prashant jaiswal

To explain with example, If you have 10 records with dedupe
key having values of 10,10,20,30,30,30,30,40,40,50. On
deduping UNIQUE, you will get 20 & 50 in your output.
Remaning records comes out in the dup port.

Is This Answer Correct ?    15 Yes 1 No

what is deeup in unique only?..

Answer / dhirendra

keep Parameter of Dedup Sorted Component

(choice, required)

Specifies which records the component keeps to write to the
out port. Choose one of the following options:

first — Keeps the first record of a group
last — Keeps the last record of a group
unique-only — Keeps only records with unique key values
The component writes the remaining records of each group to
the dup port.

Default is first.

Is This Answer Correct ?    13 Yes 1 No

what is deeup in unique only?..

Answer / raju mortale

Dudup Sorted is use to remove the duplicates from records.
There is one keep parameter choices are [first,lastand unique ]
give sorted input to dudup for better result.

EX....
ID Name
1,abc
3,bcd
1,dhrf
4,dgd
2,dgf
1,dgd
2,cbdg

when you keep parameter set to unique and key is id then it will return unique only

ID Name
3,bcd
4,dgd

Is This Answer Correct ?    2 Yes 0 No

what is deeup in unique only?..

Answer / hari babu

In JOIN component : Dedup pareametr set to TRUE that means
to remove dulicate ecords from the input port before JOIN.
BY EFAULT : FALS.

DEDUP SORT COMPONENT: It separates one specified record in
each group of records .
This component reqired grouped input.

Keep Parametr: we set below optiones.

1.first — Keeps the first record of a group
2.last — Keeps the last record of a group
3.unique-only — Keeps only records with unique key values

Default is first

Thx
Hari Babu

Is This Answer Correct ?    0 Yes 0 No

what is deeup in unique only?..

Answer / mahesh

dedup is used to fetch or forward a unique row of many.
It has options of first ,last and unique only.
If you sort the dataset you can select exactly which row to
forward of may rows.

first - fwds first of many rows
last - fwds last of many rows
unique only - fwds rows which just have one entry.i.e no
rows which have dups

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Ab Initio Interview Questions

Can someone tell me the behaviour of next_in_sequence() and innovation_number() in a multifile. Suppose I have records 1,1,1,2,2,3,4,4 in a 4ways mfs file. Data in each partition is: 0th : 1,1,1 1st : 2,2 3rd : 3 4th : 4,4 What will be the sequence of these records if I pass next_in_sequence() and innovation_number() ? Also how can I extract 3rd record from each of the 4 partitions of a 4way multifile through AbInitio? In unix we can use m_dump

1 Answers  


What is conditional DML and Structured DML?

2 Answers   Accenture,


How to find the project(pub,priv,common,client) in between public, Private,common?Any identification?

0 Answers  


What is a deadlock and how it occurs?

0 Answers  


What are Cartesian joins?

3 Answers  






What do you mean by the term data warehousing?

0 Answers  


what is difference between chk point n phase.Say im loading a file (containig 1 lakh records) and my graph fails after loading 50,000th record.What is the advantage of using check point in this case. Will i be able to start from 51000th record.

1 Answers   IBM,


How you can test a dbc file ?

1 Answers   TCL,


How can you export a component’s internal parameters ?

0 Answers   TCL,


Do we really work with ACTUALDATA in development phase.

4 Answers  


What are the operations that support avoiding duplicate record?

0 Answers  


Given input file with single column having 1 2 2 4 3 .. Required output 1 2 2 4 4 4 4 3 3 3.. How?

0 Answers  


Categories