Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

99
votes
17answers
31k views

SQL - How can I remove duplicate rows?

What is the best way to remove duplicate rows from a fairly large table (i.e. 300,000+ rows)? The rows of course will not be perfect duplicates because of the existence of the RowID identity field. ...
17
votes
2answers
257 views

Techniques for finding near duplicate records

I'm attempting to clean up a database that, over the years, had acquired many duplicate records, with slightly different names. For example, in the companies table, there are names like "Some Company ...
9
votes
6answers
2k views

How to get duplicate items from a list using LINQ?

I'm having a List<string> like: List<String> list = new List<String>{"6","1","2","4","6","5","1"};` I need to get the duplicate items in the list into a new list. Now i'm using ...
8
votes
3answers
366 views

java-based tool to reduce the number of css rules

IE is not able to handle more than 4096 css rules. This limit is biting me. So I'm looking for a tool that can identify duplicate css rules and merge them. Doesn't matter much if the result is bigger ...
7
votes
2answers
65 views

SQL: Removing Duplicate records - Albeit different kind

Consider the following table: TAB6 A B C ---------- ---------- - 1 2 A 2 1 A 2 3 C 3 4 D I consider, the ...
7
votes
8answers
3k views

Tools for matching name/address data

Here's an interesting problem. I have an oracle database with name & address information which needs to be kept current. We get data feeds from a number of different gov't sources, and need to ...
6
votes
5answers
150 views

Removing duplicate cols or rows on 2D array

I'm using a 2D shape array to store pairs of longitudes+latitudes. At one point, I have to merge two of these 2D arrays, and then remove any duplicated entry. I've been searching for a function ...
6
votes
12answers
14k views

Delete duplicate records from a SQL table without a primary key

I have the below table with the below records in it create table employee ( EmpId number, EmpName varchar2(10), EmpSSN varchar2(11) ); insert into employee values(1, 'Jack', '555-55-5555'); ...
5
votes
2answers
621 views

Using LINQ to find duplicates across multiple properties

Given a class with the following definition: public class MyTestClass { public int ValueA { get; set; } public int ValueB { get; set; } } How can duplicate values be found in a ...
5
votes
2answers
3k views

Delete all Duplicate Rows except for One in MySQL?

How would I delete all duplicate data from a MySQL Table? For example, with the following data: SELECT * FROM names; +----+--------+ | id | name | +----+--------+ | 1 | google | | 2 | yahoo | | ...
5
votes
4answers
3k views

how to merge 2 List<T> with removing duplicate values in C#

I have two lists List that i need to combine and removing duplicate values of both lists A bit hard to explain, so let me show an example of what the code looks like, and what i want as a result, in ...
5
votes
3answers
658 views

Remove duplicate rows in MySQL

I have a table with the following fields: id (Unique) url (Unique) title company site_id Now, I need to remove rows having same title, company and site_id. One way to do it will be using the ...
5
votes
3answers
346 views

How to remove duplicate entries from a mysql db?

I have a table with some ids + titles. I want to make the title column unique, but it has over 600k records already, some of which are duplicates (sometimes several dozen times over). How do I remove ...
4
votes
1answer
39 views

Is there an enterprise message queue which can drop duplicate messages (first value stays)?

I am looking looking for a message queue with these requirements. Couldn't find it; maybe the closest was the rabbitmq-lvc plugin (but I need the first value in the line to stick and stay in front). ...
4
votes
1answer
91 views

Selecting duplicate points on a list of data

I'm trying to drop some elements of a list of data in Mathematica, but I don't understand how Select and Union work. For example, suppose I have the following list list = ...
4
votes
1answer
77 views

Efficiently finding duplicates in a constrained many-to-many dataset?

I have to write a bulk operation version of something our webapp lets you do on a more limited basis from the UI. The desired operation is to assign objects to a category. A category can have ...
4
votes
4answers
279 views

How to delete completely duplicate rows

Say i have duplicate rows in my table and well my database design is of 3rd class :- Insert Into tblProduct (ProductId,ProductName,Description,Category) Values (1,'Cinthol','cosmetic soap','soap'); ...
4
votes
4answers
219 views

Remove double http:// from input using jQuery

I have a textarea with a default value of http://. Now when an user pastes in an url (if they don't know what they are doing, like most people) it comes out like this http://http://www.google.com. ...
4
votes
8answers
4k views

how to delete duplicate entries in postgresql?

I have a problem where I have to add a unique constraint to an existing table. This is fine except that the table has millions of rows already, and many of the rows violate the unique constraint I ...
3
votes
3answers
49 views

SQL queries - try to avoid dulicate data in result set?

This is a question I have been wondering about for quite some time now. I'll try to explain by means of an example, but it's a general question. Say you have two tables: users, which holds the ...
3
votes
3answers
77 views

Duplicates removing [closed]

Possible Duplicate: Delete duplicate records from a SQL table without a primary key I have data: SELECT a , b FROM ( select a = 1, b = 30 union ...
3
votes
4answers
159 views

MySQL delete duplicate reverse values

I have MySQL MyISAM table: Table friends(id, friend_id): 1, 5 5, 1 2, 6 6, 2 3, 7 How to delete reverse records? If for record values «1, 5» exist record with values «5, 1» i need to delete «5, ...
3
votes
2answers
721 views

Avoiding duplicated messages on JMS/ActiveMQ

There's a way to suppress duplicated messages on a queue defined on ActiveMQ server? I tried to define manually JMSMessageID, (message.setJMSMessageID("uniqueid")), but server ignores this ...
3
votes
4answers
359 views

Removing duplicates from multiple self left joins

I am dynamically generating a query like below that creates different combinations of rules by left joining (any number of times) on itself and avoiding rules with some of the same attributes as part ...
3
votes
4answers
314 views

How to Remove Duplicate Domains from a Large List of URLs? RegEx or Otherwise

I originally asked this question: http://stackoverflow.com/questions/4002115/regular-expression-in-gvim-to-remove-duplicate-domains-from-a-list However, I realize I may be more likely to find a ...
3
votes
3answers
645 views

Haskell - Create Set (unique sorted list) - no recursion, no nub

is it Possible to create a function that will create a set with an input of a list. I just can't think of any way without using recursion. I can use high order functions like fold, filter, map, ...
3
votes
3answers
537 views

Delete duplicate rows (don't delete all duplicate)

I am using postgres. I want to delete Duplicate rows. The condition is that , 1 copy from the set of duplicate rows would not be deleted. i.e : if there are 5 duplicate records then 4 of them will be ...
3
votes
2answers
446 views

Update column to be different aggregate values

I am creating a script that for "merging" and deleting duplicate rows from a table. The table contains address information, and uses an integer field for storing information about the email as bit ...
2
votes
2answers
51 views

SQL - How can I remove duplicate rows by last entered value?

I have this code from this link: SQL - How can I remove duplicate rows? ;WITH cte AS (SELECT ROW_NUMBER() OVER (PARTITION BY person_id, date_work, hours ORDER BY ...
2
votes
4answers
56 views

Check for duplicates while populating an array

I have an array that I populate with 6 randomly generated numbers. First it generates a random number between 1 and 49 and then checks it against the numbers in the array. If it finds a duplicate it ...
2
votes
5answers
77 views

how to compare last digit for int and remove items that have the same last digit?

this is a very specific question, but i also have very specific details on what i'm looking for. i currently do not have (and cannot find) a good method for accomplishing this. please help if you can. ...
2
votes
3answers
137 views

Removing duplicate objects in a list (C#)

So I understand how to remove duplicates in a list when it comes to strings and int, etc by using Distinct() from Linq. But how do you remove duplicates based on a specific attribute of an object? ...
2
votes
1answer
31 views

Fixing the payout issue

I am re-posting my original question with edits, as that question was answered and best answer chosen. Payments comes from our supplier which goes towards the accounts and the reps get paid based on ...
2
votes
2answers
86 views

I need to fix payout issue - example given below (re-edited)

Customer Table (usage is kwH) +----+----------+------------+----------+----------+----------+-------+-------+ | ID | Customer | Account_no | Meter_no | Supplier | Active | Usage | Repid | ...
2
votes
1answer
108 views

How to remove duplicate rows from matrix

I want to removw duplcate rows from matrix. Note: I read How can I remove duplicates in an array but keep the same order?, but this is not exactly what I want; The solution above removes duplicate ...
2
votes
2answers
46 views

Deleting duplicates based on latest revision in SQL

I'm having a bit of an SQL head-scratching moment and was wondering if anyone could help. Using this data (for example): workId rateRevision 1 1 1 2 1 3 2 1 3 ...
2
votes
3answers
244 views

How to remove duplicate values from 2 columns in excel using vba

I am new to Excel VBA Programming. I have one excel sheet with two columns and each column has some email adresses separated by @@. like ColumA aa@yahoo.com@@bb@yahoo.com@@cc@yahoo.com ...
2
votes
2answers
112 views

how to remove .svn folder from github repo

i have pulled down a repo using TortoiseSVN, and in whole repo there is .svn folder in it and all the sub folders .... and i created a github repo and pushed whole repo ... so the problem is that in ...
2
votes
3answers
87 views

I am unable to remove duplicates from my array , just getting the last element of the array

I know there is a similar question but I took tips from there and applied to my code to remove the duplicates. All I am getting is just the last element of the array. I am unable to see where I am ...
2
votes
7answers
133 views

What is the bug in this code?

Based on a this logic given as an answer on SO to a different(similar) question, to remove repeated numbers in a array in O(N) time complexity, I implemented that logic in C, as shown below. But the ...
2
votes
6answers
578 views

How to delete duplicates in SQL table based on multiple fields

I have a table of games, which is described as follows: +---------------+-------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | ...
2
votes
2answers
168 views

Preventing Duplicate Table Inserts

The database is SQL Server 2008. I have a query which extract rows from one or more tables and then attempts to insert them into a table variable. I'd like an efficent way to prevent duplicate ...
2
votes
2answers
358 views

How can i prevent duplicate rows being selected in a select query?

I have been given the task of selecting key data from an Oracle database, but I am noticing that my select is returning duplicate rows. I don't need them for my report yet I don't want them to delete ...
2
votes
4answers
279 views

Delete Duplicate email addresses from Table in MYSQL

I have a table with columns for ID, firstname, lastname, address, email and so on. Is there any way to delete duplicate email addresses from the TABLE? Additional information (from comments): If ...
2
votes
4answers
154 views

Fastest stable duplicate removal algorithm

I have an array and I need to get out of it array, without duplicates. I must leave those unique elements that have a minimal order in the original array. That's roughly I mean NoDuplicate(A, value) ...
2
votes
4answers
1k views

how to delete duplicate rows from ms access database (C#)

I have been going through various sites and codes, but nothing seems to end my misery. Either they help to find and remove duplicates for a specific column or they remove only from the datatable, not ...
2
votes
3answers
222 views

How can I remove the duplicates from answer in O(n) running time?

void findodd(int a[]) { int hash[100]; int i; int c[100]={0}; for(i=0;i<6;i++) { c[a[i]]=c[a[i]]+1; hash[a[i]]=c[a[i]]; if(c[a[i]]%2==0) hash[a[i]]=0; } ...
2
votes
3answers
290 views

How can I remove duplicates from a TextBox?

I have a text box that has each item on a new line. I am trying to remove duplicates from this textBox. I can't think of anything. I tried adding each item to an array and the removing the duplicates, ...
2
votes
1answer
187 views

How to remove duplicates based on level in hierarchy?

I have the following XML structure: <node name="A"> <node name="B"> <node name="C"/> <node name="D"/> <node name="E"/> </node> <node ...
2
votes
4answers
235 views

Haskell - get items that occur only once

Im trying to figure out how to create a new list that has only the elements that occur only once. I can't use recursion either. This is a small part of a bigger function. Im trying to write a ...

1 2 3