<?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: Finding out largest tables on MySQL Server</title>
	<atom:link href="http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/</link>
	<description>Everything about MySQL Performance</description>
	<lastBuildDate>Sat, 21 Nov 2009 05:23:57 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Gheek.net &#187; MySQL add an index to a table.</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/comment-page-1/#comment-361897</link>
		<dc:creator>Gheek.net &#187; MySQL add an index to a table.</dc:creator>
		<pubDate>Tue, 14 Oct 2008 18:30:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/#comment-361897</guid>
		<description>[...] Referenced from: mysqlperformanceblog.com Finding largest tables on MySQL instance is no brainier in MySQL 5.0+ thanks to Information Schema but I still wanted to post little query I use for the purpose so I can easily find it later, plus it is quite handy in a way it presents information: SQL: mysql&gt; SELECT concat(table_schema,&#039;.&#039;,table_name),concat(round(table_rows/1000000,2),&#039;M&#039;) rows,concat(round(data_length/(1024*1024*1024),2),&#039;G&#039;) DATA,concat(round(index_length/(1024*1024*1024),2),&#039;G&#039;) idx,concat(round((data_length+index_length)/(1024*1024*1024),2),&#039;G&#039;) total_size,round(index_length/data_length,2) idxfrac FROM information_schema.TABLES ORDER BY data_length+index_length DESC LIMIT 10; +-------------------------------------+--------+--------+--------+------------+---------+ &#124; concat(table_schema,&#039;.&#039;,table_name) &#124; rows &#124; DATA &#124; idx &#124; total_size &#124; idxfrac &#124; +-------------------------------------+--------+--------+--------+------------+---------+ &#124; art87.link_out87 &#124; 37.25M &#124; 14.83G &#124; 14.17G &#124; 29.00G &#124; 0.96 &#124; &#124; art87.article87 &#124; 12.67M &#124; 15.83G &#124; 4.79G &#124; 20.62G &#124; 0.30 &#124; &#124; art116.article116 &#124; 10.49M &#124; 12.52G &#124; 3.65G &#124; 16.18G &#124; 0.29 &#124; &#124; art84.article84 &#124; 10.10M &#124; 10.11G &#124; 3.59G &#124; 13.70G &#124; 0.35 &#124; &#124; art104.link_out104 &#124; 23.66M &#124; 6.63G &#124; 6.55G &#124; 13.18G &#124; 0.99 &#124; &#124; art118.article118 &#124; 7.06M &#124; 10.49G &#124; 2.68G &#124; 13.17G &#124; 0.26 &#124; &#124; art106.article106 &#124; 9.86M &#124; 10.19G &#124; 2.76G &#124; 12.95G &#124; 0.27 &#124; &#124; art85.article85 &#124; 6.20M &#124; 9.82G &#124; 2.51G &#124; 12.33G &#124; 0.26 &#124; &#124; art91.article91 &#124; 8.66M &#124; 9.17G &#124; 2.66G &#124; 11.83G &#124; 0.29 &#124; &#124; art94.article94 &#124; 5.21M &#124; 10.10G &#124; 1.69G &#124; 11.79G &#124; 0.17 &#124; +-------------------------------------+--------+--------+--------+------------+---------+ 10 rows IN SET (2 min 29.19 sec) [...]</description>
		<content:encoded><![CDATA[<p>[...] Referenced from: mysqlperformanceblog.com Finding largest tables on MySQL instance is no brainier in MySQL 5.0+ thanks to Information Schema but I still wanted to post little query I use for the purpose so I can easily find it later, plus it is quite handy in a way it presents information: SQL: mysql&gt; SELECT concat(table_schema,&#8217;.',table_name),concat(round(table_rows/1000000,2),&#8217;M') rows,concat(round(data_length/(1024*1024*1024),2),&#8217;G') DATA,concat(round(index_length/(1024*1024*1024),2),&#8217;G') idx,concat(round((data_length+index_length)/(1024*1024*1024),2),&#8217;G') total_size,round(index_length/data_length,2) idxfrac FROM information_schema.TABLES ORDER BY data_length+index_length DESC LIMIT 10; +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8211;+&#8212;&#8212;&#8211;+&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+ | concat(table_schema,&#8217;.',table_name) | rows | DATA | idx | total_size | idxfrac | +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8211;+&#8212;&#8212;&#8211;+&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+ | art87.link_out87 | 37.25M | 14.83G | 14.17G | 29.00G | 0.96 | | art87.article87 | 12.67M | 15.83G | 4.79G | 20.62G | 0.30 | | art116.article116 | 10.49M | 12.52G | 3.65G | 16.18G | 0.29 | | art84.article84 | 10.10M | 10.11G | 3.59G | 13.70G | 0.35 | | art104.link_out104 | 23.66M | 6.63G | 6.55G | 13.18G | 0.99 | | art118.article118 | 7.06M | 10.49G | 2.68G | 13.17G | 0.26 | | art106.article106 | 9.86M | 10.19G | 2.76G | 12.95G | 0.27 | | art85.article85 | 6.20M | 9.82G | 2.51G | 12.33G | 0.26 | | art91.article91 | 8.66M | 9.17G | 2.66G | 11.83G | 0.29 | | art94.article94 | 5.21M | 10.10G | 1.69G | 11.79G | 0.17 | +&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8211;+&#8212;&#8212;&#8211;+&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+ 10 rows IN SET (2 min 29.19 sec) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lvermilion</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/comment-page-1/#comment-360060</link>
		<dc:creator>lvermilion</dc:creator>
		<pubDate>Mon, 06 Oct 2008 19:16:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/#comment-360060</guid>
		<description>If I check mysql reference show table status seems to be very inaccurate if we take it for the number of rows, but the datalength seems to be accurate. Is your SQL statement keying off the same values that show table status is?

Rows

The number of rows. Some storage engines, such as MyISAM, store the exact count. For other storage engines, such as InnoDB, this value is an approximation, and may vary from the actual value by as much as 40 to 50%. In such cases, use SELECT COUNT(*) to obtain an accurate count.</description>
		<content:encoded><![CDATA[<p>If I check mysql reference show table status seems to be very inaccurate if we take it for the number of rows, but the datalength seems to be accurate. Is your SQL statement keying off the same values that show table status is?</p>
<p>Rows</p>
<p>The number of rows. Some storage engines, such as MyISAM, store the exact count. For other storage engines, such as InnoDB, this value is an approximation, and may vary from the actual value by as much as 40 to 50%. In such cases, use SELECT COUNT(*) to obtain an accurate count.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lvermilion</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/comment-page-1/#comment-360057</link>
		<dc:creator>lvermilion</dc:creator>
		<pubDate>Mon, 06 Oct 2008 19:10:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/#comment-360057</guid>
		<description>Nice post!! The only issue I have is it is not the same result from &quot;select count(*) from &quot;. For that matter the show table status is not the same either. The true size of the table is increasing and I can not seem to find records getting deleted anywhere. Can you explain why this is?

Here is an example.

mysql&gt; select count(*) from table;
+----------+
&#124; count(*) &#124;
+----------+
&#124; 14828558 &#124; 
+----------+
1 row in set (39.94 sec)

#########
Now to make it interesting, I will to the show table status and your SQL statement and get different results from the count(*). (Note the &quot;show table status&quot; results match the output of your SQL statement, if I could execute them at identical seconds).
#########

mysql&gt; SELECT concat(table_schema,&#039;.&#039;,table_name),concat(round(table_rows/1000000,2),&#039;M&#039;) rows,concat(round(data_length/(1024*1024*1024),2),&#039;G&#039;) DATA,concat(round(index_length/(1024*1024*1024),2),&#039;G&#039;) idx,concat(round((data_length+index_length)/(1024*1024*1024),2),&#039;G&#039;) total_size,round(index_length/data_length,2) idxfrac FROM information_schema.TABLES ORDER BY data_length+index_length DESC LIMIT 10;
+----------------------------------------------+--------+-------+-------+------------+---------+
&#124; concat(table_schema,&#039;.&#039;,table_name)          &#124; rows   &#124; DATA  &#124; idx   &#124; total_size &#124; idxfrac &#124;
+----------------------------------------------+--------+-------+-------+------------+---------+
&#124; database.table                               &#124; 14.73M &#124; 2.08G &#124; 0.00G &#124; 2.08G      &#124;    0.00 &#124; 
+----------------------------------------------+--------+-------+-------+------------+---------+
10 rows in set (0.15 sec)

mysql&gt; show table status like &#039;table&#039; \G
*************************** 1. row ***************************
           Name: table
         Engine: InnoDB
        Version: 10
     Row_format: Compact
           Rows: 14898977
 Avg_row_length: 150
    Data_length: 2237661184
Max_data_length: 0
   Index_length: 0
      Data_free: 0
 Auto_increment: NULL
    Create_time: 2008-10-01 09:38:00
    Update_time: NULL
     Check_time: NULL
      Collation: latin1_swedish_ci
       Checksum: NULL
 Create_options: 
        Comment: InnoDB free: 4021248 kB
1 row in set (0.06 sec)

########
I have ran your query and the show table status query yet again and get new values that are not consistent with &quot;select count(*) from &quot;.
########

+----------------------------------------------+--------+-------+-------+------------+---------+
&#124; concat(table_schema,&#039;.&#039;,table_name)          &#124; rows   &#124; DATA  &#124; idx   &#124; total_size &#124; idxfrac &#124;
+----------------------------------------------+--------+-------+-------+------------+---------+
&#124; database.table                               &#124; 15.00M &#124; 2.08G &#124; 0.00G &#124; 2.08G      &#124;    0.00 &#124; 
+----------------------------------------------+--------+-------+-------+------------+---------+

mysql&gt; show table status like &#039;table&#039; \G
*************************** 1. row ***************************
           Name: table
         Engine: InnoDB
        Version: 10
     Row_format: Compact
           Rows: 15120698
 Avg_row_length: 147
    Data_length: 2237661184
Max_data_length: 0
   Index_length: 0
      Data_free: 0
 Auto_increment: NULL
    Create_time: 2008-10-01 09:38:00
    Update_time: NULL
     Check_time: NULL
      Collation: latin1_swedish_ci
       Checksum: NULL
 Create_options: 
        Comment: InnoDB free: 4021248 kB
1 row in set (0.02 sec)

mysql&gt; select count(*) from table;
+----------+
&#124; count(*) &#124;
+----------+
&#124; 14828945 &#124; 
+----------+
1 row in set (44.33 sec)</description>
		<content:encoded><![CDATA[<p>Nice post!! The only issue I have is it is not the same result from &#8220;select count(*) from &#8220;. For that matter the show table status is not the same either. The true size of the table is increasing and I can not seem to find records getting deleted anywhere. Can you explain why this is?</p>
<p>Here is an example.</p>
<p>mysql&gt; select count(*) from table;<br />
+&#8212;&#8212;&#8212;-+<br />
| count(*) |<br />
+&#8212;&#8212;&#8212;-+<br />
| 14828558 |<br />
+&#8212;&#8212;&#8212;-+<br />
1 row in set (39.94 sec)</p>
<p>#########<br />
Now to make it interesting, I will to the show table status and your SQL statement and get different results from the count(*). (Note the &#8220;show table status&#8221; results match the output of your SQL statement, if I could execute them at identical seconds).<br />
#########</p>
<p>mysql&gt; SELECT concat(table_schema,&#8217;.',table_name),concat(round(table_rows/1000000,2),&#8217;M') rows,concat(round(data_length/(1024*1024*1024),2),&#8217;G') DATA,concat(round(index_length/(1024*1024*1024),2),&#8217;G') idx,concat(round((data_length+index_length)/(1024*1024*1024),2),&#8217;G') total_size,round(index_length/data_length,2) idxfrac FROM information_schema.TABLES ORDER BY data_length+index_length DESC LIMIT 10;<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8211;+&#8212;&#8212;-+&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+<br />
| concat(table_schema,&#8217;.',table_name)          | rows   | DATA  | idx   | total_size | idxfrac |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8211;+&#8212;&#8212;-+&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+<br />
| database.table                               | 14.73M | 2.08G | 0.00G | 2.08G      |    0.00 |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8211;+&#8212;&#8212;-+&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+<br />
10 rows in set (0.15 sec)</p>
<p>mysql&gt; show table status like &#8216;table&#8217; \G<br />
*************************** 1. row ***************************<br />
           Name: table<br />
         Engine: InnoDB<br />
        Version: 10<br />
     Row_format: Compact<br />
           Rows: 14898977<br />
 Avg_row_length: 150<br />
    Data_length: 2237661184<br />
Max_data_length: 0<br />
   Index_length: 0<br />
      Data_free: 0<br />
 Auto_increment: NULL<br />
    Create_time: 2008-10-01 09:38:00<br />
    Update_time: NULL<br />
     Check_time: NULL<br />
      Collation: latin1_swedish_ci<br />
       Checksum: NULL<br />
 Create_options:<br />
        Comment: InnoDB free: 4021248 kB<br />
1 row in set (0.06 sec)</p>
<p>########<br />
I have ran your query and the show table status query yet again and get new values that are not consistent with &#8220;select count(*) from &#8220;.<br />
########</p>
<p>+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8211;+&#8212;&#8212;-+&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+<br />
| concat(table_schema,&#8217;.',table_name)          | rows   | DATA  | idx   | total_size | idxfrac |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8211;+&#8212;&#8212;-+&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+<br />
| database.table                               | 15.00M | 2.08G | 0.00G | 2.08G      |    0.00 |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8211;+&#8212;&#8212;-+&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;&#8212;+</p>
<p>mysql&gt; show table status like &#8216;table&#8217; \G<br />
*************************** 1. row ***************************<br />
           Name: table<br />
         Engine: InnoDB<br />
        Version: 10<br />
     Row_format: Compact<br />
           Rows: 15120698<br />
 Avg_row_length: 147<br />
    Data_length: 2237661184<br />
Max_data_length: 0<br />
   Index_length: 0<br />
      Data_free: 0<br />
 Auto_increment: NULL<br />
    Create_time: 2008-10-01 09:38:00<br />
    Update_time: NULL<br />
     Check_time: NULL<br />
      Collation: latin1_swedish_ci<br />
       Checksum: NULL<br />
 Create_options:<br />
        Comment: InnoDB free: 4021248 kB<br />
1 row in set (0.02 sec)</p>
<p>mysql&gt; select count(*) from table;<br />
+&#8212;&#8212;&#8212;-+<br />
| count(*) |<br />
+&#8212;&#8212;&#8212;-+<br />
| 14828945 |<br />
+&#8212;&#8212;&#8212;-+<br />
1 row in set (44.33 sec)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vladislav</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/comment-page-1/#comment-360004</link>
		<dc:creator>vladislav</dc:creator>
		<pubDate>Mon, 06 Oct 2008 14:49:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/#comment-360004</guid>
		<description>Nice. Thanks for your time and effort. Open Source is cool.</description>
		<content:encoded><![CDATA[<p>Nice. Thanks for your time and effort. Open Source is cool.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zeck&#8217;s Blog &#187; Archive du blog &#187; MySQL, quelques requêtes pour l&#8217;administration&#8230;</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/comment-page-1/#comment-342419</link>
		<dc:creator>Zeck&#8217;s Blog &#187; Archive du blog &#187; MySQL, quelques requêtes pour l&#8217;administration&#8230;</dc:creator>
		<pubDate>Fri, 08 Aug 2008 10:05:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/#comment-342419</guid>
		<description>[...] Finding out largest tables on MySQL Server [...]</description>
		<content:encoded><![CDATA[<p>[...] Finding out largest tables on MySQL Server [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Researching your MySQL table sizes &#124; MySQL Performance Blog</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/comment-page-1/#comment-253802</link>
		<dc:creator>Researching your MySQL table sizes &#124; MySQL Performance Blog</dc:creator>
		<pubDate>Tue, 18 Mar 2008 02:28:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/#comment-253802</guid>
		<description>[...] posted a simple INFORMATION_SCHEMA query to find largest tables last month and it got a good response. [...]</description>
		<content:encoded><![CDATA[<p>[...] posted a simple INFORMATION_SCHEMA query to find largest tables last month and it got a good response. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yafei Qin</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/comment-page-1/#comment-248809</link>
		<dc:creator>Yafei Qin</dc:creator>
		<pubDate>Wed, 05 Mar 2008 02:35:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/#comment-248809</guid>
		<description>I have the same question when it takes more than half minute during check my all database, as gigiduru mentioned.
Thanks peter. :)

btw, a tips:
If you want to show tables only in a certain database, add a WHERE clause in the SQL
WHERE table_schema = &#039;db_name&#039;</description>
		<content:encoded><![CDATA[<p>I have the same question when it takes more than half minute during check my all database, as gigiduru mentioned.<br />
Thanks peter. <img src='http://www.mysqlperformanceblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>btw, a tips:<br />
If you want to show tables only in a certain database, add a WHERE clause in the SQL<br />
WHERE table_schema = &#8216;db_name&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: The Linux Index &#187; Stephan Hermann: How to determine the largest table in your MySQL database?</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/comment-page-1/#comment-246860</link>
		<dc:creator>The Linux Index &#187; Stephan Hermann: How to determine the largest table in your MySQL database?</dc:creator>
		<pubDate>Thu, 28 Feb 2008 18:34:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/#comment-246860</guid>
		<description>[...] &quot;Finding out largest tables on MySQL server&quot; [...]</description>
		<content:encoded><![CDATA[<p>[...] &quot;Finding out largest tables on MySQL server&quot; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Finding out largest tables on MySQL Server &#171; Purab&#8217;s Programmer Blog</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/comment-page-1/#comment-242794</link>
		<dc:creator>Finding out largest tables on MySQL Server &#171; Purab&#8217;s Programmer Blog</dc:creator>
		<pubDate>Fri, 15 Feb 2008 07:23:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/#comment-242794</guid>
		<description>[...] purpose so I can easily find it later, plus it is quite handy in a way it presents information:  PLAIN TEXT [...]</description>
		<content:encoded><![CDATA[<p>[...] purpose so I can easily find it later, plus it is quite handy in a way it presents information:  PLAIN TEXT [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/comment-page-1/#comment-242148</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 13 Feb 2008 16:10:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.mysqlperformanceblog.com/2008/02/04/finding-out-largest-tables-on-mysql-server/#comment-242148</guid>
		<description>Thanks Peter, this was a great help.</description>
		<content:encoded><![CDATA[<p>Thanks Peter, this was a great help.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
