<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; Delete Duplicate Records &#8211; Rows</title>
	<atom:link href="http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 17 May 2013 15:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: ManojKumarM</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-462290</link>
		<dc:creator><![CDATA[ManojKumarM]]></dc:creator>
		<pubDate>Tue, 23 Apr 2013 17:41:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-462290</guid>
		<description><![CDATA[Perfect :-) Thanks for the hint :-)]]></description>
		<content:encoded><![CDATA[<p>Perfect :-) Thanks for the hint :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: shahram</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-461544</link>
		<dc:creator><![CDATA[shahram]]></dc:creator>
		<pubDate>Mon, 22 Apr 2013 17:21:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-461544</guid>
		<description><![CDATA[thanks]]></description>
		<content:encoded><![CDATA[<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashish Sahu</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-455755</link>
		<dc:creator><![CDATA[Ashish Sahu]]></dc:creator>
		<pubDate>Sun, 14 Apr 2013 10:26:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-455755</guid>
		<description><![CDATA[WHILE (SELECT  COUNT(*) FROM TBLEMP WHERE EMPNO IN (SELECT empno  from tblemp group by empno having count(empno)&gt;1))&gt;1
 
 DELETE top(1)  FROM TBLEMP WHERE EMPNO IN (SELECT empno  from tblemp group by empno having count(empno)&gt;1)

or
 DELETE duplicates FROM
(SELECT ROW_NUMBER() OVER (PARTITION BY firstname, lastname, EMPNO, salary,dept  ORDER BY empno) cnt
 FROM tblEmp) duplicates
WHERE duplicates.Cnt &gt; 1]]></description>
		<content:encoded><![CDATA[<p>WHILE (SELECT  COUNT(*) FROM TBLEMP WHERE EMPNO IN (SELECT empno  from tblemp group by empno having count(empno)&gt;1))&gt;1</p>
<p> DELETE top(1)  FROM TBLEMP WHERE EMPNO IN (SELECT empno  from tblemp group by empno having count(empno)&gt;1)</p>
<p>or<br />
 DELETE duplicates FROM<br />
(SELECT ROW_NUMBER() OVER (PARTITION BY firstname, lastname, EMPNO, salary,dept  ORDER BY empno) cnt<br />
 FROM tblEmp) duplicates<br />
WHERE duplicates.Cnt &gt; 1</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff Rivera</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-443584</link>
		<dc:creator><![CDATA[Jeff Rivera]]></dc:creator>
		<pubDate>Sun, 24 Mar 2013 19:31:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-443584</guid>
		<description><![CDATA[If we assume two duplicates doesn&#039;t this delete both records? How does your delete statement only remove one duplicate or is your goal to delete all duplicates? You can do a delete top but you must know how many duplicates]]></description>
		<content:encoded><![CDATA[<p>If we assume two duplicates doesn&#8217;t this delete both records? How does your delete statement only remove one duplicate or is your goal to delete all duplicates? You can do a delete top but you must know how many duplicates</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rakesh</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-437759</link>
		<dc:creator><![CDATA[Rakesh]]></dc:creator>
		<pubDate>Fri, 15 Mar 2013 13:42:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-437759</guid>
		<description><![CDATA[DELETE
FROM  TestTable
WHERE TestTable.%%physloc%%
      NOT IN (SELECT MIN(b.%%physloc%%)
              FROM   TestTable b
              GROUP BY b.column1, b.Column2)]]></description>
		<content:encoded><![CDATA[<p>DELETE<br />
FROM  TestTable<br />
WHERE TestTable.%%physloc%%<br />
      NOT IN (SELECT MIN(b.%%physloc%%)<br />
              FROM   TestTable b<br />
              GROUP BY b.column1, b.Column2)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tao-Lao</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-437465</link>
		<dc:creator><![CDATA[Tao-Lao]]></dc:creator>
		<pubDate>Fri, 15 Mar 2013 02:27:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-437465</guid>
		<description><![CDATA[Like this answer]]></description>
		<content:encoded><![CDATA[<p>Like this answer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Atanu Sinha</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-432912</link>
		<dc:creator><![CDATA[Atanu Sinha]]></dc:creator>
		<pubDate>Wed, 06 Mar 2013 15:15:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-432912</guid>
		<description><![CDATA[I believe the best way to delete (multiple) dupes from a table ( that has a primary key) would be as follows:

Delete from table
where ID not in 
(Select MIN(id)
from table
group by duplicateCol1, duplicateCol2......duplicateColn)]]></description>
		<content:encoded><![CDATA[<p>I believe the best way to delete (multiple) dupes from a table ( that has a primary key) would be as follows:</p>
<p>Delete from table<br />
where ID not in<br />
(Select MIN(id)<br />
from table<br />
group by duplicateCol1, duplicateCol2&#8230;&#8230;duplicateColn)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #018 &#124; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-430053</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Weekly Series &#8211; Memory Lane &#8211; #018 &#124; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sat, 02 Mar 2013 01:30:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-430053</guid>
		<description><![CDATA[[...] Delete Duplicate Records – Rows Find and Delete Duplicate Records &#8211; an extremely popular script and video. [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Delete Duplicate Records – Rows Find and Delete Duplicate Records &#8211; an extremely popular script and video. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DoronF</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-424077</link>
		<dc:creator><![CDATA[DoronF]]></dc:creator>
		<pubDate>Tue, 19 Feb 2013 20:19:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-424077</guid>
		<description><![CDATA[Hi Pinal,

Thanks for the article and also wrote an article about this subject found at: http://www.dfarber.com/computer-consulting-blog/2011/12/26/remove-duplicate-records-in-sql.aspx

Regards,

Doron]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>Thanks for the article and also wrote an article about this subject found at: <a href="http://www.dfarber.com/computer-consulting-blog/2011/12/26/remove-duplicate-records-in-sql.aspx" rel="nofollow">http://www.dfarber.com/computer-consulting-blog/2011/12/26/remove-duplicate-records-in-sql.aspx</a></p>
<p>Regards,</p>
<p>Doron</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Brown</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-421014</link>
		<dc:creator><![CDATA[David Brown]]></dc:creator>
		<pubDate>Tue, 12 Feb 2013 14:56:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-421014</guid>
		<description><![CDATA[Great post! Thanks!]]></description>
		<content:encoded><![CDATA[<p>Great post! Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raamu jeee</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-417293</link>
		<dc:creator><![CDATA[raamu jeee]]></dc:creator>
		<pubDate>Sun, 03 Feb 2013 19:34:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-417293</guid>
		<description><![CDATA[create table  as select distinct * from ;]]></description>
		<content:encoded><![CDATA[<p>create table  as select distinct * from ;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-405254</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Tue, 08 Jan 2013 13:44:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-405254</guid>
		<description><![CDATA[Import data into staging tables and from there remove duplicates and them to final table]]></description>
		<content:encoded><![CDATA[<p>Import data into staging tables and from there remove duplicates and them to final table</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-405248</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Tue, 08 Jan 2013 13:40:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-405248</guid>
		<description><![CDATA[It can be easily done with row_number() function. Refer point 6 at http://beyondrelational.com/modules/2/blogs/70/posts/10802/multipurpose-rownumber-function.aspx]]></description>
		<content:encoded><![CDATA[<p>It can be easily done with row_number() function. Refer point 6 at <a href="http://beyondrelational.com/modules/2/blogs/70/posts/10802/multipurpose-rownumber-function.aspx" rel="nofollow">http://beyondrelational.com/modules/2/blogs/70/posts/10802/multipurpose-rownumber-function.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Noor Ul Islam</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-404095</link>
		<dc:creator><![CDATA[Noor Ul Islam]]></dc:creator>
		<pubDate>Sat, 05 Jan 2013 12:15:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-404095</guid>
		<description><![CDATA[delete from duplicate
where fname in 
             (
               select d1.fname
               from duplicate d1 
               inner join duplicate d2
               on d1.fname=d2.fname       and   d1.Lname=d2.Lname
               group by d1.fname,    d1.Lname
                having count (d1.fname)&gt;1 and count(d1.Lname)&gt;1
             )]]></description>
		<content:encoded><![CDATA[<p>delete from duplicate<br />
where fname in<br />
             (<br />
               select d1.fname<br />
               from duplicate d1<br />
               inner join duplicate d2<br />
               on d1.fname=d2.fname       and   d1.Lname=d2.Lname<br />
               group by d1.fname,    d1.Lname<br />
                having count (d1.fname)&gt;1 and count(d1.Lname)&gt;1<br />
             )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vinoth kumar</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-395862</link>
		<dc:creator><![CDATA[Vinoth kumar]]></dc:creator>
		<pubDate>Wed, 19 Dec 2012 06:15:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-395862</guid>
		<description><![CDATA[different source files has around 5 lakhs- 10 lakhs records with duplicates and final table will be having 5 billion records . How you will remove the duplicate records before inserting it into final table.]]></description>
		<content:encoded><![CDATA[<p>different source files has around 5 lakhs- 10 lakhs records with duplicates and final table will be having 5 billion records . How you will remove the duplicate records before inserting it into final table.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Select and Delete Duplicate Records &#8211; SQL in Sixty Seconds #036 &#8211; Video &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-395753</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Select and Delete Duplicate Records &#8211; SQL in Sixty Seconds #036 &#8211; Video &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Wed, 19 Dec 2012 01:30:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-395753</guid>
		<description><![CDATA[[...] SQL SERVER – Delete Duplicate Records – Rows [...]]]></description>
		<content:encoded><![CDATA[<p>[...] SQL SERVER – Delete Duplicate Records – Rows [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prashant</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-379167</link>
		<dc:creator><![CDATA[Prashant]]></dc:creator>
		<pubDate>Fri, 23 Nov 2012 06:29:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-379167</guid>
		<description><![CDATA[HI
you can simply use common table expression (CTE).
in that you need to use Rank funcation

With t AS
(
Select , //in which u want to delete duplicate record.
RANK(ORDER BY PARTITION BY ) AS ‘Rank’
from
)
DELETE FROM t
WHERE t.Rank&gt;1

Thanks]]></description>
		<content:encoded><![CDATA[<p>HI<br />
you can simply use common table expression (CTE).<br />
in that you need to use Rank funcation</p>
<p>With t AS<br />
(<br />
Select , //in which u want to delete duplicate record.<br />
RANK(ORDER BY PARTITION BY ) AS ‘Rank’<br />
from<br />
)<br />
DELETE FROM t<br />
WHERE t.Rank&gt;1</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-377261</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Tue, 20 Nov 2012 08:47:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-377261</guid>
		<description><![CDATA[Have you tried this?

“delete from Product where Experddate in (select Experddate from Product where proID=@prID order by Experddate ASC)”]]></description>
		<content:encoded><![CDATA[<p>Have you tried this?</p>
<p>“delete from Product where Experddate in (select Experddate from Product where proID=@prID order by Experddate ASC)”</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mathu</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-371047</link>
		<dc:creator><![CDATA[mathu]]></dc:creator>
		<pubDate>Thu, 08 Nov 2012 04:27:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-371047</guid>
		<description><![CDATA[this is used to decrease the quantity from order by expiry date 

&quot;delete from Product where Experddate= (select Experddate  from Product where proID=@prID order by Experddate ASC)&quot;


but it is not working  &quot;plz help me&quot; friends]]></description>
		<content:encoded><![CDATA[<p>this is used to decrease the quantity from order by expiry date </p>
<p>&#8220;delete from Product where Experddate= (select Experddate  from Product where proID=@prID order by Experddate ASC)&#8221;</p>
<p>but it is not working  &#8220;plz help me&#8221; friends</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ketan Barasara</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-332076</link>
		<dc:creator><![CDATA[Ketan Barasara]]></dc:creator>
		<pubDate>Fri, 17 Aug 2012 10:46:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-332076</guid>
		<description><![CDATA[This blog is very useful to me]]></description>
		<content:encoded><![CDATA[<p>This blog is very useful to me</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ketan Barasara</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-332074</link>
		<dc:creator><![CDATA[Ketan Barasara]]></dc:creator>
		<pubDate>Fri, 17 Aug 2012 10:45:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-332074</guid>
		<description><![CDATA[TY]]></description>
		<content:encoded><![CDATA[<p>TY</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mahesh</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-332065</link>
		<dc:creator><![CDATA[Mahesh]]></dc:creator>
		<pubDate>Fri, 17 Aug 2012 10:14:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-332065</guid>
		<description><![CDATA[Value1  &#124; Value2
1           &#124; &#039;Mahesh&#039;
1           &#124; &#039;Mahesh&#039;
2           &#124; &#039;Rahul&#039;
2           &#124; &#039;Rahul&#039;

With NewData
as
(
select s.*,DENSE_RANK()  OVER 
(PARTITION BY s.Value1  order by  newID() ) r  from  SampleData s
)

DELETE  FROM NewData where r=2]]></description>
		<content:encoded><![CDATA[<p>Value1  | Value2<br />
1           | &#8216;Mahesh&#8217;<br />
1           | &#8216;Mahesh&#8217;<br />
2           | &#8216;Rahul&#8217;<br />
2           | &#8216;Rahul&#8217;</p>
<p>With NewData<br />
as<br />
(<br />
select s.*,DENSE_RANK()  OVER<br />
(PARTITION BY s.Value1  order by  newID() ) r  from  SampleData s<br />
)</p>
<p>DELETE  FROM NewData where r=2</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LAKSHMANARAJ</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-312291</link>
		<dc:creator><![CDATA[LAKSHMANARAJ]]></dc:creator>
		<pubDate>Wed, 11 Jul 2012 16:32:24 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-312291</guid>
		<description><![CDATA[HI Pinal sir,
Nice,Where i will download these type of SQL queries for interview(Pdf).please let me know the link.]]></description>
		<content:encoded><![CDATA[<p>HI Pinal sir,<br />
Nice,Where i will download these type of SQL queries for interview(Pdf).please let me know the link.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Avanti Papoo Choudhary</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-308432</link>
		<dc:creator><![CDATA[Avanti Papoo Choudhary]]></dc:creator>
		<pubDate>Mon, 02 Jul 2012 10:05:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-308432</guid>
		<description><![CDATA[Thanx  Mr. Pinal it&#039;s very useful...it has solved my major problems]]></description>
		<content:encoded><![CDATA[<p>Thanx  Mr. Pinal it&#8217;s very useful&#8230;it has solved my major problems</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jymy solunki</title>
		<link>http://blog.sqlauthority.com/2007/03/01/sql-server-delete-duplicate-records-rows/#comment-307839</link>
		<dc:creator><![CDATA[jymy solunki]]></dc:creator>
		<pubDate>Sat, 30 Jun 2012 09:36:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/03/01/delete-duplicate-records/#comment-307839</guid>
		<description><![CDATA[This logic is delete all  record only not be douplicate]]></description>
		<content:encoded><![CDATA[<p>This logic is delete all  record only not be douplicate</p>
]]></content:encoded>
	</item>
</channel>
</rss>
