<?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: Researching your MySQL table sizes</title>
	<atom:link href="http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/</link>
	<description>Percona&#039;s MySQL &#38; InnoDB performance and scalability blog</description>
	<lastBuildDate>Sat, 11 Feb 2012 16:45:54 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: narendra</title>
		<link>http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/comment-page-1/#comment-836833</link>
		<dc:creator>narendra</dc:creator>
		<pubDate>Fri, 04 Nov 2011 08:09:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/#comment-836833</guid>
		<description>how to find only size of the table...?</description>
		<content:encoded><![CDATA[<p>how to find only size of the table&#8230;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kees Schepers</title>
		<link>http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/comment-page-1/#comment-793760</link>
		<dc:creator>Kees Schepers</dc:creator>
		<pubDate>Thu, 13 Jan 2011 13:49:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/#comment-793760</guid>
		<description>Nice article! Really good to analyse data usage!</description>
		<content:encoded><![CDATA[<p>Nice article! Really good to analyse data usage!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kaushik katari</title>
		<link>http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/comment-page-1/#comment-742529</link>
		<dc:creator>kaushik katari</dc:creator>
		<pubDate>Fri, 02 Apr 2010 13:13:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/#comment-742529</guid>
		<description>Easier to copy paste:

SELECT count(*) TABLES, concat(round(sum(table_rows)/1000000,2),&#039;M&#039;) rows, concat(round(sum(data_length)/(1024*1024*1024),2),&#039;G&#039;) DATA, concat(round(sum(index_length)/(1024*1024*1024),2),&#039;G&#039;) idx,
concat(round(sum(data_length+index_length)/(1024*1024*1024),2),&#039;G&#039;) total_size, round(sum(index_length)/sum(data_length),2) idxfrac
FROM information_schema.TABLES;</description>
		<content:encoded><![CDATA[<p>Easier to copy paste:</p>
<p>SELECT count(*) TABLES, concat(round(sum(table_rows)/1000000,2),&#8217;M') rows, concat(round(sum(data_length)/(1024*1024*1024),2),&#8217;G') DATA, concat(round(sum(index_length)/(1024*1024*1024),2),&#8217;G') idx,<br />
concat(round(sum(data_length+index_length)/(1024*1024*1024),2),&#8217;G') total_size, round(sum(index_length)/sum(data_length),2) idxfrac<br />
FROM information_schema.TABLES;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bernard</title>
		<link>http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/comment-page-1/#comment-711839</link>
		<dc:creator>bernard</dc:creator>
		<pubDate>Tue, 19 Jan 2010 10:59:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/#comment-711839</guid>
		<description>excellent post, but one question. How to find total no. of indexes/index keys (not index size) and unique keys, ordered keys.I know you have the solution, please post it. Thanks in advance.</description>
		<content:encoded><![CDATA[<p>excellent post, but one question. How to find total no. of indexes/index keys (not index size) and unique keys, ordered keys.I know you have the solution, please post it. Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gerry</title>
		<link>http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/comment-page-1/#comment-616379</link>
		<dc:creator>Gerry</dc:creator>
		<pubDate>Fri, 24 Jul 2009 21:56:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/#comment-616379</guid>
		<description>Another vote for putting the queries on one line for copy and pasting.</description>
		<content:encoded><![CDATA[<p>Another vote for putting the queries on one line for copy and pasting.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: My daily readings 07/10/2009 &#171; Strange Kite</title>
		<link>http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/comment-page-1/#comment-612207</link>
		<dc:creator>My daily readings 07/10/2009 &#171; Strange Kite</dc:creator>
		<pubDate>Fri, 10 Jul 2009 11:32:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/#comment-612207</guid>
		<description>[...] Researching your MySQL table sizes &#124; MySQL Performance Blog [...]</description>
		<content:encoded><![CDATA[<p>[...] Researching your MySQL table sizes | MySQL Performance Blog [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Taha Patel</title>
		<link>http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/comment-page-1/#comment-458384</link>
		<dc:creator>Taha Patel</dc:creator>
		<pubDate>Wed, 28 Jan 2009 16:14:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/#comment-458384</guid>
		<description>This is really cool. Thanks.</description>
		<content:encoded><![CDATA[<p>This is really cool. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pereyrada &#187; Consultas Ãºtiles en SQL</title>
		<link>http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/comment-page-1/#comment-398726</link>
		<dc:creator>Pereyrada &#187; Consultas Ãºtiles en SQL</dc:creator>
		<pubDate>Mon, 01 Dec 2008 22:20:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/#comment-398726</guid>
		<description>[...] Web] MySQL Performance Blog Saludos A. Daniel [...]</description>
		<content:encoded><![CDATA[<p>[...] Web] MySQL Performance Blog Saludos A. Daniel [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How Percona does a MySQL Performance Audit &#124; Reflexiones IT</title>
		<link>http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/comment-page-1/#comment-394648</link>
		<dc:creator>How Percona does a MySQL Performance Audit &#124; Reflexiones IT</dc:creator>
		<pubDate>Fri, 28 Nov 2008 07:47:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/#comment-394648</guid>
		<description>[...] the server and see what I think about it. If the server is not heavily loaded, I may even do some INFORMATION_SCHEMA queries to help me find the biggest tables and so forth. If the server is heavily loaded or has a lot of data, touching the INFORMATION_SCHEMA [...]</description>
		<content:encoded><![CDATA[<p>[...] the server and see what I think about it. If the server is not heavily loaded, I may even do some INFORMATION_SCHEMA queries to help me find the biggest tables and so forth. If the server is heavily loaded or has a lot of data, touching the INFORMATION_SCHEMA [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How Percona does a MySQL Performance Audit &#124; MySQL Performance Blog</title>
		<link>http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/comment-page-1/#comment-391380</link>
		<dc:creator>How Percona does a MySQL Performance Audit &#124; MySQL Performance Blog</dc:creator>
		<pubDate>Tue, 25 Nov 2008 04:42:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/03/17/researching-your-mysql-table-sizes/#comment-391380</guid>
		<description>[...] the server and see what I think about it. If the server is not heavily loaded, I may even do some INFORMATION_SCHEMA queries to help me find the biggest tables and so forth. If the server is heavily loaded or has a lot of data, touching the INFORMATION_SCHEMA [...]</description>
		<content:encoded><![CDATA[<p>[...] the server and see what I think about it. If the server is not heavily loaded, I may even do some INFORMATION_SCHEMA queries to help me find the biggest tables and so forth. If the server is heavily loaded or has a lot of data, touching the INFORMATION_SCHEMA [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

