Re: [Qgis-developer] Finding duplicate records

2014-03-01 Thread Eric Goddard
Python can also be used to find duplicate attributes. It isn't as straightforward as a sql query, but it works. And if your data isnt in spatialite/postGIS, I don't know if you can do a select distinct without creating a more complicated subquery using the expression builder. From the console:

Re: [Qgis-developer] Finding duplicate records

2014-03-01 Thread Paolo Cavallini
Il 01/03/2014 17:06, Eric Goddard ha scritto: Python can also be used to find duplicate attributes. It isn't as straightforward as a sql query, but it works. And if your data isnt in Thanks to all. Seems a good exercise for a plugin. All the best. -- Paolo Cavallini - www.faunalia.eu QGIS

[Qgis-developer] Finding duplicate records

2014-02-28 Thread Paolo Cavallini
Hi all. I can't recall of any function or plugin to find duplicate data ona table of attributes: am I right, or am I forgetting something? Thanks in advance. -- Paolo Cavallini - www.faunalia.eu QGIS PostGIS courses: http://www.faunalia.eu/training.html

Re: [Qgis-developer] Finding duplicate records

2014-02-28 Thread Alex Mandel
On 02/28/2014 02:46 AM, Paolo Cavallini wrote: Hi all. I can't recall of any function or plugin to find duplicate data ona table of attributes: am I right, or am I forgetting something? Thanks in advance. I always use Spatialite or Postgis so I can run a DISTINCT function in a query, or