How to remove duplicate records in grid ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T17:56:15Z http://stackoverflow.com/feeds/question/1048989 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1048989/how-to-remove-duplicate-records-in-grid 1 How to remove duplicate records in grid ? Pavan 2009-06-26T12:57:25Z 2009-06-26T17:01:52Z <p>Hi,</p> <p>Good morning !</p> <p>What is the best way to remove duplicate records from grid control? I use Delphi 2009 and devEx quantumGrid component.</p> <p>I tried looping through all the records and when a duplicate record is found then add it to list and apply filter on grid. I found this as time consuming logic. There are also two downsides of this approach.</p> <p>[1] When the duplicate records are considerably more say 10K records then applying filter takes lot of time, because of lot of entries to filter out.</p> <p>[2] Looping through all the records is itself time consuming for big result set like 1M rows.</p> <p>SQL query returns me distinct rows, but when the user hides any column in grid, then it resembles as if there are duplicate records(internally they are distinct).</p> <p>Is there any other way of doing this?</p> <p>Any ideas on this are greatly helpful !</p> <p>Thanks &amp; Regards, Pavan.</p> http://stackoverflow.com/questions/1048989/how-to-remove-duplicate-records-in-grid/1049059#1049059 0 Answer by Mason Wheeler for How to remove duplicate records in grid ? Mason Wheeler 2009-06-26T13:13:41Z 2009-06-26T13:13:41Z <p>Checking for duplicates is always a bit tricky, for the reasons you just mentioned. The best way to do it in this particular case is probably to filter before the data reaches the grid.</p> <p>If this grid is getting its records from a database, try tweaking your SQL query to not return any duplicate records. (The "distinct" keyword can be useful here.) The database server can usually do a much better job of it than you can.</p> <p>If not, then you're probably loading your result set from some sort of object list. Try filtering the list and culling duplicate objects <em>before</em> you load it into the grid. Then it's over with and you don't have to filter the grid itself. This is a lot less time-consuming.</p> http://stackoverflow.com/questions/1048989/how-to-remove-duplicate-records-in-grid/1049064#1049064 0 Answer by Larry for How to remove duplicate records in grid ? Larry 2009-06-26T13:14:25Z 2009-06-26T14:57:23Z <p>I have worked with DevExpress's Quantum Grid for some time and their support form <a href="http://www.devexpress.com/Support/Center/" rel="nofollow">http://www.devexpress.com/Support/Center/</a> is excellent. When you post questions the DevExpress staff will answer you directly. With that said, I did a quick search for you and found some relevant articles.</p> <p><strong>how to hide duplicate row values:</strong> <a href="http://www.devexpress.com/Support/Center/p/Q142379.aspx?searchtext=Duplicate+Rows&amp;p=T1|P0|83" rel="nofollow">http://www.devexpress.com/Support/Center/p/Q142379.aspx?searchtext=Duplicate+Rows&amp;p=T1|P0|83</a></p> <p><strong>highlight duplicate records in a grid:</strong> <a href="http://www.devexpress.com/Support/Center/p/Q98776.aspx" rel="nofollow">http://www.devexpress.com/Support/Center/p/Q98776.aspx</a></p> <p>Unfortunately, it looks like you will have to iterate through the table in order to hide duplicate values. I would suggest that you try to clean the data up before it makes it to the grid. Ideally you would update the code/sql that produces the data. If that is not possible, you could write a TcxCustomDataSource that will scrub the data when it is first loaded. This should have better performance because you will not be using the grid's api to access the data.</p> <p><strong>Edit</strong></p> <p>ExpressQuantumGrid will not automatically hide rows that look like duplicates because the user hid a column. See: <a href="http://www.devexpress.com/Support/Center/p/Q205956.aspx?searchtext=Duplicate+Rows&amp;p=T1|P0|83" rel="nofollow">http://www.devexpress.com/Support/Center/p/Q205956.aspx?searchtext=Duplicate+Rows&amp;p=T1|P0|83</a>.</p> <p><strong>Poster</strong></p> <blockquote> <p>For example, I have a dataset which contains two fields ID and TXT. ID is a unique field and TXT field may contain duplicate values. So when the dataset is connected to the grid with all columns visible, the records are unique. See the image1.bmp. But if I hide the ID column then the grid shows duplicate rows. See the image2.bmp.</p> </blockquote> <p><strong>DevExpress Team</strong></p> <blockquote> <p>I'm sorry, but our ExpressQuantumGrid Suite doesn't support such a functionality, because this task is very specific. However, you can implement it manually.</p> </blockquote> http://stackoverflow.com/questions/1048989/how-to-remove-duplicate-records-in-grid/1049076#1049076 1 Answer by C Harmon for How to remove duplicate records in grid ? C Harmon 2009-06-26T13:16:52Z 2009-06-26T13:16:52Z <p>Can you alter your dataset to not return duplicate records in the first place? I would normally only return the records I want displayed instead of returning unwanted records from the database and then using a database grid to try to suppress unwanted records.</p> http://stackoverflow.com/questions/1048989/how-to-remove-duplicate-records-in-grid/1050166#1050166 0 Answer by Despatcher for How to remove duplicate records in grid ? Despatcher 2009-06-26T17:01:52Z 2009-06-26T17:01:52Z <p>With thousands of rows I would add an additional field to the DB called say Sum or Hash or if you can't change the DB add a calculated field if it is a ClientDataSet but this carries overhead at display time</p> <p>Calculate the contents of the hash field with something fast and simple like a sum of all the chars in your text field. All dupes are now easily identified. Add this field to your Unique or Distinct Query parameters or filter out on that.</p> <p>Just an Idea.</p>