<?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 for Mark Leith</title>
	<atom:link href="http://www.markleith.co.uk/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.markleith.co.uk</link>
	<description>Welcome to my little world</description>
	<pubDate>Fri, 03 Sep 2010 06:38:49 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Improving InnoDB Transaction Reporting by LenZ</title>
		<link>http://www.markleith.co.uk/?p=367&cpage=1#comment-131373</link>
		<dc:creator>LenZ</dc:creator>
		<pubDate>Thu, 19 Aug 2010 08:55:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.markleith.co.uk/?p=367#comment-131373</guid>
		<description>Hey Mark. Very cool. Thanks for pushing this forward and getting it included into MySQL 5.5! Keep up the good work.</description>
		<content:encoded><![CDATA[<p>Hey Mark. Very cool. Thanks for pushing this forward and getting it included into MySQL 5.5! Keep up the good work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on InnoDB Table and Tablespace Monitors by Prakash</title>
		<link>http://www.markleith.co.uk/?p=25&cpage=1#comment-131372</link>
		<dc:creator>Prakash</dc:creator>
		<pubDate>Thu, 12 Aug 2010 04:18:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.markleith.co.uk/?p=25#comment-131372</guid>
		<description>Currently I just want to know, How I will calculate the used and free space for the InnoDB tablespace (Both global and per_table  table spaces).

rgds
Prakash</description>
		<content:encoded><![CDATA[<p>Currently I just want to know, How I will calculate the used and free space for the InnoDB tablespace (Both global and per_table  table spaces).</p>
<p>rgds<br />
Prakash</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on InnoDB Table and Tablespace Monitors by Mark Leith</title>
		<link>http://www.markleith.co.uk/?p=25&cpage=1#comment-131371</link>
		<dc:creator>Mark Leith</dc:creator>
		<pubDate>Wed, 11 Aug 2010 09:24:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.markleith.co.uk/?p=25#comment-131371</guid>
		<description>Hey Prakash,

Unfortunately they do not currently fill the tables, they just cause InnoDB to dump all of the information to MySQL's error log:

"InnoDB will then dump the tablespace information to either the error log, or the console (if started without log-error)."

However, this will be changing very soon - in the new 5.5.5-m3 release, there are a number of new tables available within the INFORMATION_SCHEMA database:

mysql&#62; show tables like 'innodb_sys%';
+--------------------------------------------+
&#124; Tables_in_information_schema (innodb_sys%) &#124;
+--------------------------------------------+
&#124; INNODB_SYS_FIELDS                          &#124;
&#124; INNODB_SYS_INDEXES                         &#124;
&#124; INNODB_SYS_TABLESTATS                      &#124;
&#124; INNODB_SYS_COLUMNS                         &#124;
&#124; INNODB_SYS_FOREIGN_COLS                    &#124;
&#124; INNODB_SYS_FOREIGN                         &#124;
&#124; INNODB_SYS_TABLES                          &#124;
+--------------------------------------------+
7 rows in set (0.00 sec)

mysql&#62; select * from innodb_sys_tables;
+----------+------------------+------+--------+-------+
&#124; TABLE_ID &#124; NAME             &#124; FLAG &#124; N_COLS &#124; SPACE &#124;
+----------+------------------+------+--------+-------+
&#124;       11 &#124; SYS_FOREIGN      &#124;    0 &#124;      7 &#124;     0 &#124;
&#124;       12 &#124; SYS_FOREIGN_COLS &#124;    0 &#124;      7 &#124;     0 &#124;
&#124;       13 &#124; test/t1          &#124;    1 &#124;      4 &#124;     1 &#124;
+----------+------------------+------+--------+-------+
3 rows in set (0.00 sec)

mysql&#62; select * from innodb_sys_indexes;
+----------+-----------------+----------+------+----------+---------+-------+
&#124; INDEX_ID &#124; NAME            &#124; TABLE_ID &#124; TYPE &#124; N_FIELDS &#124; PAGE_NO &#124; SPACE &#124;
+----------+-----------------+----------+------+----------+---------+-------+
&#124;       11 &#124; ID_IND          &#124;       11 &#124;    3 &#124;        1 &#124;     302 &#124;     0 &#124;
&#124;       12 &#124; FOR_IND         &#124;       11 &#124;    0 &#124;        1 &#124;     303 &#124;     0 &#124;
&#124;       13 &#124; REF_IND         &#124;       11 &#124;    0 &#124;        1 &#124;     304 &#124;     0 &#124;
&#124;       14 &#124; ID_IND          &#124;       12 &#124;    3 &#124;        2 &#124;     305 &#124;     0 &#124;
&#124;       15 &#124; GEN_CLUST_INDEX &#124;       13 &#124;    1 &#124;        0 &#124;       3 &#124;     1 &#124;
+----------+-----------------+----------+------+----------+---------+-------+
5 rows in set (0.00 sec)

etc.</description>
		<content:encoded><![CDATA[<p>Hey Prakash,</p>
<p>Unfortunately they do not currently fill the tables, they just cause InnoDB to dump all of the information to MySQL&#8217;s error log:</p>
<p>&#8220;InnoDB will then dump the tablespace information to either the error log, or the console (if started without log-error).&#8221;</p>
<p>However, this will be changing very soon - in the new 5.5.5-m3 release, there are a number of new tables available within the INFORMATION_SCHEMA database:</p>
<p>mysql&gt; show tables like &#8216;innodb_sys%&#8217;;<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+<br />
| Tables_in_information_schema (innodb_sys%) |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+<br />
| INNODB_SYS_FIELDS                          |<br />
| INNODB_SYS_INDEXES                         |<br />
| INNODB_SYS_TABLESTATS                      |<br />
| INNODB_SYS_COLUMNS                         |<br />
| INNODB_SYS_FOREIGN_COLS                    |<br />
| INNODB_SYS_FOREIGN                         |<br />
| INNODB_SYS_TABLES                          |<br />
+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+<br />
7 rows in set (0.00 sec)</p>
<p>mysql&gt; select * from innodb_sys_tables;<br />
+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;+&#8212;&#8212;&#8211;+&#8212;&#8212;-+<br />
| TABLE_ID | NAME             | FLAG | N_COLS | SPACE |<br />
+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;+&#8212;&#8212;&#8211;+&#8212;&#8212;-+<br />
|       11 | SYS_FOREIGN      |    0 |      7 |     0 |<br />
|       12 | SYS_FOREIGN_COLS |    0 |      7 |     0 |<br />
|       13 | test/t1          |    1 |      4 |     1 |<br />
+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;+&#8212;&#8212;+&#8212;&#8212;&#8211;+&#8212;&#8212;-+<br />
3 rows in set (0.00 sec)</p>
<p>mysql&gt; select * from innodb_sys_indexes;<br />
+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;-+&#8212;&#8212;+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;+&#8212;&#8212;-+<br />
| INDEX_ID | NAME            | TABLE_ID | TYPE | N_FIELDS | PAGE_NO | SPACE |<br />
+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;-+&#8212;&#8212;+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;+&#8212;&#8212;-+<br />
|       11 | ID_IND          |       11 |    3 |        1 |     302 |     0 |<br />
|       12 | FOR_IND         |       11 |    0 |        1 |     303 |     0 |<br />
|       13 | REF_IND         |       11 |    0 |        1 |     304 |     0 |<br />
|       14 | ID_IND          |       12 |    3 |        2 |     305 |     0 |<br />
|       15 | GEN_CLUST_INDEX |       13 |    1 |        0 |       3 |     1 |<br />
+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;+&#8212;&#8212;&#8212;-+&#8212;&#8212;+&#8212;&#8212;&#8212;-+&#8212;&#8212;&#8212;+&#8212;&#8212;-+<br />
5 rows in set (0.00 sec)</p>
<p>etc.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on InnoDB Table and Tablespace Monitors by Prakash</title>
		<link>http://www.markleith.co.uk/?p=25&cpage=1#comment-131370</link>
		<dc:creator>Prakash</dc:creator>
		<pubDate>Wed, 11 Aug 2010 05:00:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.markleith.co.uk/?p=25#comment-131370</guid>
		<description>Hi , 

I am new to mysql db. As you mentioned above I have created two tables (innodb_moniter and innodb_tablespace_moniter), but giving select statement to those table I am not  getting any result as u mentioned above. Can you please guide me  here.</description>
		<content:encoded><![CDATA[<p>Hi , </p>
<p>I am new to mysql db. As you mentioned above I have created two tables (innodb_moniter and innodb_tablespace_moniter), but giving select statement to those table I am not  getting any result as u mentioned above. Can you please guide me  here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on InnoDB Monitor Docs Extended by Prakash</title>
		<link>http://www.markleith.co.uk/?p=175&cpage=1#comment-131369</link>
		<dc:creator>Prakash</dc:creator>
		<pubDate>Wed, 11 Aug 2010 04:42:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.markleith.co.uk/?p=175#comment-131369</guid>
		<description>Hi Mark,

How I will enable both table and table space moniter in my database. as you mentioned by creating table of both type (from ur blog). How I will see the contents from those table. 

Thanks 
Prakash</description>
		<content:encoded><![CDATA[<p>Hi Mark,</p>
<p>How I will enable both table and table space moniter in my database. as you mentioned by creating table of both type (from ur blog). How I will see the contents from those table. </p>
<p>Thanks<br />
Prakash</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Statpack Version 2 by MySql Statistics Aggregator&#160;&#124;&#160;Solution Expert Online Blogs</title>
		<link>http://www.markleith.co.uk/?p=21&cpage=1#comment-131368</link>
		<dc:creator>MySql Statistics Aggregator&#160;&#124;&#160;Solution Expert Online Blogs</dc:creator>
		<pubDate>Tue, 06 Jul 2010 10:20:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.markleith.co.uk/?p=21#comment-131368</guid>
		<description>[...] follow link to know more about it. VN:F [1.9.2_1090]please wait...Rating: 0.0/10 (0 votes cast)VN:F [...]</description>
		<content:encoded><![CDATA[<p>[...] follow link to know more about it. VN:F [1.9.2_1090]please wait&#8230;Rating: 0.0/10 (0 votes cast)VN:F [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Starting a new job! by flytox</title>
		<link>http://www.markleith.co.uk/?p=347&cpage=1#comment-131366</link>
		<dc:creator>flytox</dc:creator>
		<pubDate>Wed, 16 Jun 2010 08:30:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.markleith.co.uk/?p=347#comment-131366</guid>
		<description>I'm late, but, Congratulations Mark ;-) No doubt you'll handle this new position with success !</description>
		<content:encoded><![CDATA[<p>I&#8217;m late, but, Congratulations Mark <img src='http://www.markleith.co.uk/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> No doubt you&#8217;ll handle this new position with success !</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Scientists say dolphins should be treated as &#8216;non-human persons&#8217; by Joel</title>
		<link>http://www.markleith.co.uk/?p=309&cpage=1#comment-131356</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Mon, 24 May 2010 05:19:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.markleith.co.uk/?p=309#comment-131356</guid>
		<description>I think that it is beautiful that what we search for in the skies and space (intelligent life), is actually right in front of us in the waters. What I don't find beautiful is the lack of recognition this form of intelligence gets. Dolphins are treated as any other animal, as in, not us. But when we look closer like the scientists, we begin to understand that intellegence exist in other beings besides ourselvdes, just in a different way. Creatures like dolphins are complex and deep thinkers, they can even recognize themselves in the mirror!

Just because dolphins didn't evolve physical forms like we have, like arms, fingers, legs and such, doesnt mean that they didn't evolve mentally. They probably have progressed mentally much further than us, to learn such things as love and forgiveness. We kill them at the hundreds, yet dolphins still retain the ability to love and to defend thier land-based forms, the humans. 

anyway, I own two cats and believe that thier lives should be full with stimulation. I see them as my equal, my animal side that just comprehends the world in a unique way that might not be possible for me to see. But just because I don't see it, doesn't mean that it can't be.</description>
		<content:encoded><![CDATA[<p>I think that it is beautiful that what we search for in the skies and space (intelligent life), is actually right in front of us in the waters. What I don&#8217;t find beautiful is the lack of recognition this form of intelligence gets. Dolphins are treated as any other animal, as in, not us. But when we look closer like the scientists, we begin to understand that intellegence exist in other beings besides ourselvdes, just in a different way. Creatures like dolphins are complex and deep thinkers, they can even recognize themselves in the mirror!</p>
<p>Just because dolphins didn&#8217;t evolve physical forms like we have, like arms, fingers, legs and such, doesnt mean that they didn&#8217;t evolve mentally. They probably have progressed mentally much further than us, to learn such things as love and forgiveness. We kill them at the hundreds, yet dolphins still retain the ability to love and to defend thier land-based forms, the humans. </p>
<p>anyway, I own two cats and believe that thier lives should be full with stimulation. I see them as my equal, my animal side that just comprehends the world in a unique way that might not be possible for me to see. But just because I don&#8217;t see it, doesn&#8217;t mean that it can&#8217;t be.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Starting a new job! by Varp</title>
		<link>http://www.markleith.co.uk/?p=347&cpage=1#comment-131315</link>
		<dc:creator>Varp</dc:creator>
		<pubDate>Mon, 10 May 2010 15:23:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.markleith.co.uk/?p=347#comment-131315</guid>
		<description>Many grats Mr Leith! :)</description>
		<content:encoded><![CDATA[<p>Many grats Mr Leith! <img src='http://www.markleith.co.uk/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Starting a new job! by Mark Grennan</title>
		<link>http://www.markleith.co.uk/?p=347&cpage=1#comment-131090</link>
		<dc:creator>Mark Grennan</dc:creator>
		<pubDate>Thu, 06 May 2010 18:13:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.markleith.co.uk/?p=347#comment-131090</guid>
		<description>Congrats!  Hay how about really cranking up on that MySQL Proxy.  I'd way much like to put it into production.</description>
		<content:encoded><![CDATA[<p>Congrats!  Hay how about really cranking up on that MySQL Proxy.  I&#8217;d way much like to put it into production.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
