ptillemans
Programmer
Hi,
During an upgrade I came accross 2 (actually 4) records which I cannot distinguish, but which are duplicates.
tvl_test=# select namespace,id,max(oid),min(oid) from tvlprodcounter a group by namespace,id having count(*)>1;
namespace | id | max | min
-------------------------------------+--------------------+--------+--------
com.synegorie.adverts.ejb.AdvertCMP | etri_timesClicked | 238225 | 238225
com.synegorie.adverts.ejb.AdvertCMP | happy_timesClicked | 238364 | 238364
(2 rows)
Does anybody know how I can separate them and delete just 1 of the 2?
Thanks,
Peter
During an upgrade I came accross 2 (actually 4) records which I cannot distinguish, but which are duplicates.
tvl_test=# select namespace,id,max(oid),min(oid) from tvlprodcounter a group by namespace,id having count(*)>1;
namespace | id | max | min
-------------------------------------+--------------------+--------+--------
com.synegorie.adverts.ejb.AdvertCMP | etri_timesClicked | 238225 | 238225
com.synegorie.adverts.ejb.AdvertCMP | happy_timesClicked | 238364 | 238364
(2 rows)
Does anybody know how I can separate them and delete just 1 of the 2?
Thanks,
Peter