Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

23
votes
9answers
10k views

Xcode duplicate/delete line

Coming from Eclipse and having been used to duplicate lines all the time, it's pretty strange finding out that Xcode has none such function. Or does it? I know it's possible to change the system wide ...
18
votes
6answers
19k views

How do i find duplicate values in a table in Oracle?

What's the simplest SQL statement that will return the duplicate values for a given column and the count of their occurrences in an Oracle database table? For example: I have a JOBS table with the ...
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 ...
14
votes
6answers
5k views

Duplicating model instances and their related objects in Django / Algorithm for recusrively duplicating an object

I've models for Books, Chapters and Pages. They are all written by a User: from django.db import models class Book(models.Model) author = models.ForeignKey('auth.User') class ...
14
votes
9answers
10k views

How to remove duplicate values from an array in PHP

( can't believe this hasn't been asked in SO yet... ) How can I remove duplicate values from an array in PHP?
11
votes
9answers
3k views

How to detect duplicate data?

I have got a simple contacts database but I'm having problems with users entering in duplicate data. I have implemented a simple data comparison but unfortunately the duplicated data that is being ...
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
3answers
4k views

Remove duplicates from an array of objects in javascript

I have an object that contains an array of objects. things = new Object(); things.thing = new Array(); things.thing.push({place:"here",name:"stuff"}); ...
6
votes
8answers
8k views

Map implementation with duplicate keys

I want to have Map with duplicate keys, I know there are many Map implementations(eclipse shows me about 50), so I bet there must be one that allows this. I know its easy to write your own Map that ...
6
votes
4answers
10k views

How to remove duplicate values from a multi-dimensional array in PHP

How can I remove duplicate values from a multi-dimensional array in PHP? Example array: Array ( [0] => Array ( [0] => abc [1] => def ) [1] => Array ( [0] => ...
5
votes
4answers
492 views

How to remove duplicated records\observations WITHOUT sorting in SAS?

I wonder if there is a way to unduplicate records WITHOUT sorting?Sometimes, I want to keep original order and just want to remove duplicated records. Is it possible? BTW, below are what I know ...
5
votes
5answers
1k views

How to remove the quoted text from an email and only show the new text

I am parsing emails. When I see a reply to an email, I would like to remove the quoted text so that I can append the text to the previous email (even if its a reply). Typically, you'll see this: ...
5
votes
5answers
2k views

How to prevent repeated postbacks from confusing my business layer

I have a web application (ASP.Net 3.5) with a conventional 3 layer design. If the user clicks a button a postback happens, some middle and data layer code runs, and the screen is refreshed. If the ...
4
votes
4answers
84 views

SQL Server duplicate removal with a twist

SQL Server 2008, I have inherited a table like this (74k rows): create table #mess (keycol char(36) , name1 varchar(254) , name2 varchar(254), valuex varchar(254) ) insert into #mess values ...
4
votes
3answers
144 views

Avoiding duplicate-content hit on Google for archive pages?

Each blog post on my site -- http://www.correlated.org -- is archived at its own permalinked URL. On each of these archived pages, I'd like to display not only the archived post but also the 10 posts ...
4
votes
6answers
230 views

Duplicating table in MYSQL without copying one row at a time

I want to duplicate a very large table, but I do not want to copy it row by row. Is there a way to duplicate it? For example, you can TRUNCATE w/o deleting row/row, so i was wondering if there is ...
4
votes
3answers
381 views

mysql duplicate data deletion

This shows me all the first names and last names that have exactly two entries that are identical SELECT `firstname`,`lastname`,COUNT(*) AS Count FROM `people` GROUP BY `firstname`,`lastname` ...
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
62 views

How to find Column with same (some x value) value repeated morethan once? needs to return those rows. (in Oracle)

There is a table called contacts, with columns id, name, address, ph_no..etc. i need to find out rows with the same name, if the rows count is more than 1, show those rows. for example: table: ...
3
votes
2answers
105 views

TDD duplication of test data

I'm new to test driven development and first time I'm tring to use it in a simple project. I have a class, and I need to test creation, insertion and deletion of objects of this class. If I write ...
3
votes
2answers
100 views

What is the SQL statement that removes duplicates but keep additional column's data?

I'd like to know what should be the SQL statement (for ORACLE DBMS) that would get back unique (by CUSTOMER_ID, VEHICLE_ID, DEALER_ID and EVENT_TYPE_ID) rows BUT it will return the latest date ...
3
votes
3answers
212 views

Is it possible for SQL to find records with duplicates?

Can I use a SQL query to find records where one field is identical in both? That is, can I use the following table and return 1,3 (the ids) by comparing the name columns (and ignoring the phone)? ...
3
votes
6answers
2k views

How to count duplicates in Ruby Arrays

How do you count duplicates in a ruby array? For example, if my array had three a's, how could I count that
3
votes
10answers
4k views

what are the fast algorithms to find duplicate elements in a collection and group them?

Say you have a collection of elements, how can you pick out those with duplicates and put them into each group with least amount of comparison? preferably in C++, but algorithm is more important ...
3
votes
5answers
843 views

Remove dupes/sort from a Array of Associative Arrays in PHP

I have a array of associative arrays aa[] = ('Tires'=>100, 'Oil'=>10, 'Spark Plugs'=>4 ); aa[] = ('Tires'=>454, 'Oil'=>43, 'Spark Plugs'=>3 ); aa[] = ('Tires'=>34, 'Oil'=>55, 'Spark Plugs'=>44 ); ...
3
votes
8answers
782 views

Compare many text files that contain duplicate “stubs” from the previous and next file and remove duplicate text automatically

I have a large number of text files (1000+) each containing an article from an academic journal. Unfortunately each article's file also contains a "stub" from the end of the previous article (at the ...
3
votes
1answer
1k views

Suppress the duplicate values in group, SSRS Reports

I have an SSRS report where the date should be grouped by project category the project code in the category is repeating in side the group how do I suppress the value Please help me to get an idea. ...
3
votes
11answers
10k views

SQL Server Query Question: If I stop a long running query, does it rollback?

A query that is used to loop through 17 millions records to remove duplicates has been running now for about 16 hours and I wanted to know if the query is stopped right now if it will finalize the ...
2
votes
2answers
100 views

How to avoid duplicate data when doing SQL INSERT from CSV

How can i avoid duplicate data when inserting from CSV file into my SQL server 2008 ? #region Put to SQL string line = null; bool IsFirst = true; ...
2
votes
1answer
24 views

Retrieve single from pairs

This is a SQL query question. If you have a table like this: ID1 ID2 1709 1689 1689 1709 1934 1501 1501 1934 And you want to retrieve like this: ID1 ID2 1709 1689 ...
2
votes
2answers
80 views

Assigning values based on the number of character duplicates

Sorry for the burst of question after question. Trying my best to search, but I have the arduous task of coming up with a very, very large program and I am still very new to R so I appreciate all the ...
2
votes
2answers
179 views

Rails: Duplicate a record and its multi-level associations?

I'm building a survey app and trying to build a duplication feature so users can duplicate surveys. What I need to do is duplicate the survey, that survey's questions and each questions answers ...
2
votes
4answers
305 views

Remove duplicate data in a file

I have a problem coming up with an algorithm. Will you, guys, help me out here? I have a file which is huge and thus can not be loaded at once. There exists duplicate data (generic data, might be ...
2
votes
1answer
121 views

Check duplicate content without doing a GET

One of the main purposes of URL normalization is to avoid GET requests on distinct URLs that produce the exact same result. Now, I know that you can check for the canonical tag and even compare two ...
2
votes
1answer
126 views

MySQL remove duplicated row data on SELECT

I have a table that i want to filter out duplicated data when using SELECT operation, the table itself contain data like this: |=======| | SPEED | |=======| | 100 | | 100 | | 90 | | 80 | | ...
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
2answers
142 views

PHP runs two requests per request when using rewrite rule

I noticed that PHP has been inserting the same data twice, even with a simple query, below is my index file: <?php require("constants.php"); //contains database settings $database = new ...
2
votes
4answers
277 views

SQL Remove almost duplicate rows

I have a table that contains unfortuantely bad data and I'm trying to filter some out. I am sure that the LName, FName combonation is unique since the data set is small enough to verify. LName, ...
2
votes
2answers
95 views

What is the fastest way / script to duplicate visual studio project?

Hello I have setup visual studio express c++ project, with paths to included headers and libs Now I like to duplicate this project to be with the same paths to included headers and libs But with ...
2
votes
2answers
208 views

Perl MySQL - How do I skip updating or inserting a row if a particular field matches?

I am pretty new to this so sorry for my lack of knowledge. I set up a few tables which I have successfully written to and and accessed via a Perl script using CGI and DBI modules thanks to advice ...
2
votes
4answers
535 views

Case insensitive duplicates SQL

So I have a users table where the user.username has many duplicates like: username and Username and useRnAme john and John and jOhn That was a bug and these three records should have been only one. ...
2
votes
4answers
765 views

How to delete duplicate records in MySQL by retaining those fields with data in the duplicate item but not in the original item?

I have few thousands of records with few 100 fields in a MySQL Table. Some records are duplicates and are marked as such. Now while I can simply delete the dupes, I want to retain any other possible ...
2
votes
2answers
934 views

Remove duplicates from generic list<T>

I have came with solution to remove duplicates from generic list<T> in .NET 2.0 as follows: List<CaseStudy> caseStudies = CaseStudyDAO.FindCaseStudiesByDate(DateTime.Now.Date, ...
2
votes
4answers
578 views

Finding duplicate files by content across multiple directories

I have downloaded some files from the internet related to a particular topic. Now I wish to check if the files have any duplicates. The issue is that the names of the files would be different, but the ...
2
votes
2answers
455 views

Avoiding Duplicate Data in DB (for use with Rails)

I have five tables that I am trying to get to work nicely together but may need some help. I have three main tables: accounts members and roles. With two join tables account_members and ...
2
votes
3answers
551 views

Abstracting NSManagedObject and NSDictionary

In my project I have some objects that I show from a server, lets call them Foo's. When I get my Foo feed, I parse them into a NSMutableDictionary subclass called RemoteFoo, and pass these RemoteFoo ...
2
votes
5answers
735 views

Finding duplicate rows in SQL Server

I have a SQL Server database of organizations, and there are many duplicate rows. I want to run a select statement to grab all of these and the amount of dupes, but also return the ids that are ...
2
votes
8answers
125 views

What algorithm should be used when doing filechecksums to find dupes?

Is taking a MD5 sum still suitable for checking for file dupes? I know that it isn't secure, but does that really matter in the case of trying to find file dupes? Should I be using something in the ...
2
votes
3answers
1k views

How to delete partial duplicate lines with AWK?

I have files with these kind of duplicate lines, where only the last field is different: OST,0202000070,01-AUG-09,002735,6,0,0202000068,4520688,-1,0,0,0,0,0,55 ...
2
votes
2answers
949 views

SharePoint: How to have a unique constraint in a list?

In SQL its possible to have fields that cannot contain duplicate data. How is this possible in SharePoint? Lets say you have a list containing values like ORANGES APPLES PEARS How do you ...

1 2 3