<?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/"
		>
<channel>
	<title>Comments on: How to find duplicate and redundant indexes in MySQL</title>
	<atom:link href="http://www.xaprb.com/blog/2006/08/28/how-to-find-duplicate-and-redundant-indexes-in-mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.xaprb.com/blog/2006/08/28/how-to-find-duplicate-and-redundant-indexes-in-mysql/</link>
	<description>Stay curious!</description>
	<lastBuildDate>Thu, 09 Feb 2012 20:41:20 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Vaibogam S</title>
		<link>http://www.xaprb.com/blog/2006/08/28/how-to-find-duplicate-and-redundant-indexes-in-mysql/#comment-14302</link>
		<dc:creator>Vaibogam S</dc:creator>
		<pubDate>Mon, 17 Mar 2008 14:56:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=216#comment-14302</guid>
		<description>A simple way to find out duplicate indexes...

SELECT * FROM information_schema.statistics WHERE table_schema = &#039;?&#039; GROUP BY table_schema, table_name, column_name HAVING count(column_name) &gt; 1;

In the above query bind the &#039;database name&#039; parameter.

-Bog</description>
		<content:encoded><![CDATA[<p>A simple way to find out duplicate indexes&#8230;</p>
<p>SELECT * FROM information_schema.statistics WHERE table_schema = &#8216;?&#8217; GROUP BY table_schema, table_name, column_name HAVING count(column_name) &gt; 1;</p>
<p>In the above query bind the &#8216;database name&#8217; parameter.</p>
<p>-Bog</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Xaprb</title>
		<link>http://www.xaprb.com/blog/2006/08/28/how-to-find-duplicate-and-redundant-indexes-in-mysql/#comment-6229</link>
		<dc:creator>Xaprb</dc:creator>
		<pubDate>Thu, 03 May 2007 13:16:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=216#comment-6229</guid>
		<description>&lt;p&gt;Indexes require space, time and other work to maintain.  They slow down writes.  You can read more by following the link to Peter Zaitsev&#039;s article at the top of the page.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Indexes require space, time and other work to maintain.  They slow down writes.  You can read more by following the link to Peter Zaitsev&#8217;s article at the top of the page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suyog kale</title>
		<link>http://www.xaprb.com/blog/2006/08/28/how-to-find-duplicate-and-redundant-indexes-in-mysql/#comment-6218</link>
		<dc:creator>suyog kale</dc:creator>
		<pubDate>Thu, 03 May 2007 07:13:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=216#comment-6218</guid>
		<description>&lt;p&gt;what is loss of having 
multiple indexes on same column?&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>what is loss of having<br />
multiple indexes on same column?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suyog</title>
		<link>http://www.xaprb.com/blog/2006/08/28/how-to-find-duplicate-and-redundant-indexes-in-mysql/#comment-6217</link>
		<dc:creator>suyog</dc:creator>
		<pubDate>Thu, 03 May 2007 07:12:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=216#comment-6217</guid>
		<description>&lt;p&gt;so 
its clear that in a table we have multiple indexes on same column&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>so<br />
its clear that in a table we have multiple indexes on same column</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Xaprb</title>
		<link>http://www.xaprb.com/blog/2006/08/28/how-to-find-duplicate-and-redundant-indexes-in-mysql/#comment-1987</link>
		<dc:creator>Xaprb</dc:creator>
		<pubDate>Tue, 26 Sep 2006 12:31:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.xaprb.com/blog/?p=216#comment-1987</guid>
		<description>&lt;p&gt;Roland has written a &lt;a href=&quot;http://forge.mysql.com/snippets/view.php?id=45&quot; rel=&quot;nofollow&quot;&gt;pure-SQL duplicate index finder&lt;/a&gt; and posted it on MySQL Forge.  Nice job Roland!&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Roland has written a <a href="http://forge.mysql.com/snippets/view.php?id=45" rel="nofollow">pure-SQL duplicate index finder</a> and posted it on MySQL Forge.  Nice job Roland!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

