<?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: MySQL fatal error 1236</title>
	<atom:link href="http://www.dougreese.com/mysql-fatal-error-1236.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.dougreese.com/mysql-fatal-error-1236.html</link>
	<description>a brief history</description>
	<lastBuildDate>Fri, 28 Oct 2011 23:44:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Suresh</title>
		<link>http://www.dougreese.com/mysql-fatal-error-1236.html/comment-page-1#comment-22393</link>
		<dc:creator>Suresh</dc:creator>
		<pubDate>Wed, 12 Oct 2011 06:33:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.dougreese.com/?p=23#comment-22393</guid>
		<description>Thanks a lot !! saved lot of time for me.</description>
		<content:encoded><![CDATA[<p>Thanks a lot !! saved lot of time for me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Dorion</title>
		<link>http://www.dougreese.com/mysql-fatal-error-1236.html/comment-page-1#comment-20650</link>
		<dc:creator>Patrick Dorion</dc:creator>
		<pubDate>Wed, 03 Aug 2011 22:10:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.dougreese.com/?p=23#comment-20650</guid>
		<description>This is great and I also lost a few moments off of my life with this one.  It would, however, have saved me even more time if it was posted on the MySQL Community Server Community pages.</description>
		<content:encoded><![CDATA[<p>This is great and I also lost a few moments off of my life with this one.  It would, however, have saved me even more time if it was posted on the MySQL Community Server Community pages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leslie</title>
		<link>http://www.dougreese.com/mysql-fatal-error-1236.html/comment-page-1#comment-18684</link>
		<dc:creator>Leslie</dc:creator>
		<pubDate>Wed, 25 May 2011 16:44:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.dougreese.com/?p=23#comment-18684</guid>
		<description>Awesome post, and comments.  Definitely saved me a ton of time (when I had *none* to spare).  Thanks to all who contributed.</description>
		<content:encoded><![CDATA[<p>Awesome post, and comments.  Definitely saved me a ton of time (when I had *none* to spare).  Thanks to all who contributed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie Roche</title>
		<link>http://www.dougreese.com/mysql-fatal-error-1236.html/comment-page-1#comment-18103</link>
		<dc:creator>Charlie Roche</dc:creator>
		<pubDate>Mon, 02 May 2011 17:06:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.dougreese.com/?p=23#comment-18103</guid>
		<description>Update to the previous post. Here&#039;s a link to the MySQL documentation that explains  this - see the &quot;Note&quot; at the end of this page.

&lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/replication-rules.html&quot; title=&quot;How Servers Evaluate Replication Filtering Rules&quot; rel=&quot;nofollow&quot;&gt;How Servers Evaluate Replication Filtering Rules&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Update to the previous post. Here&#8217;s a link to the MySQL documentation that explains  this &#8211; see the &#8220;Note&#8221; at the end of this page.</p>
<p><a href="http://dev.mysql.com/doc/refman/5.0/en/replication-rules.html" title="How Servers Evaluate Replication Filtering Rules" rel="nofollow">How Servers Evaluate Replication Filtering Rules</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Charlie Roche</title>
		<link>http://www.dougreese.com/mysql-fatal-error-1236.html/comment-page-1#comment-18102</link>
		<dc:creator>Charlie Roche</dc:creator>
		<pubDate>Mon, 02 May 2011 16:58:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.dougreese.com/?p=23#comment-18102</guid>
		<description>Hi. I had this problem too and there&#039;s another reason this error occurs. Case sensitivity of the table names. I found that it&#039;s best to have these global settings the same on the master and slave. Try this on both to see if they are different.

show variables where 
  Variable_name = &#039;lower_case_table_names&#039; OR 
  Variable_name=&#039;lower_case_file_system&#039;;

These should be the same on both master and slave.</description>
		<content:encoded><![CDATA[<p>Hi. I had this problem too and there&#8217;s another reason this error occurs. Case sensitivity of the table names. I found that it&#8217;s best to have these global settings the same on the master and slave. Try this on both to see if they are different.</p>
<p>show variables where<br />
  Variable_name = &#8216;lower_case_table_names&#8217; OR<br />
  Variable_name=&#8217;lower_case_file_system&#8217;;</p>
<p>These should be the same on both master and slave.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patricia</title>
		<link>http://www.dougreese.com/mysql-fatal-error-1236.html/comment-page-1#comment-9240</link>
		<dc:creator>Patricia</dc:creator>
		<pubDate>Wed, 04 Nov 2009 18:14:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.dougreese.com/?p=23#comment-9240</guid>
		<description>This page helped (and especially the comments).

My error was: 
ERROR] Got fatal error 1236: &#039;Client requested master to start replication from impossible position&#039; from master when reading data from binary log

My fix on the slave was to be:  
LOAD DATA FROM MASTER;

However I first had to grant extra privileges to my account from the master:
 grant reload, replication client on *.* to &#039;repl-user&#039;@&#039;server-name&#039;</description>
		<content:encoded><![CDATA[<p>This page helped (and especially the comments).</p>
<p>My error was:<br />
ERROR] Got fatal error 1236: &#8216;Client requested master to start replication from impossible position&#8217; from master when reading data from binary log</p>
<p>My fix on the slave was to be:<br />
LOAD DATA FROM MASTER;</p>
<p>However I first had to grant extra privileges to my account from the master:<br />
 grant reload, replication client on *.* to &#8216;repl-user&#8217;@'server-name&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anon</title>
		<link>http://www.dougreese.com/mysql-fatal-error-1236.html/comment-page-1#comment-9006</link>
		<dc:creator>Anon</dc:creator>
		<pubDate>Mon, 28 Sep 2009 18:18:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.dougreese.com/?p=23#comment-9006</guid>
		<description>A HUGE thank you to Burkhart and Doug!!!

Came in today and there was: Could not find first log file name in binary log index file ( server_errno=1236)

It popped up after a master reboot over the weekend. Checked the log file and it was indeed at the end. Set replication to the next file at first position (which was also 4 )and everything came right back up.

14 hours or so saved by not re-replicating from scratch.</description>
		<content:encoded><![CDATA[<p>A HUGE thank you to Burkhart and Doug!!!</p>
<p>Came in today and there was: Could not find first log file name in binary log index file ( server_errno=1236)</p>
<p>It popped up after a master reboot over the weekend. Checked the log file and it was indeed at the end. Set replication to the next file at first position (which was also 4 )and everything came right back up.</p>
<p>14 hours or so saved by not re-replicating from scratch.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: doug</title>
		<link>http://www.dougreese.com/mysql-fatal-error-1236.html/comment-page-1#comment-7970</link>
		<dc:creator>doug</dc:creator>
		<pubDate>Fri, 29 May 2009 07:38:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.dougreese.com/?p=23#comment-7970</guid>
		<description>@Dhananjay: I have seen this happen as well.  Thanks for the info.</description>
		<content:encoded><![CDATA[<p>@Dhananjay: I have seen this happen as well.  Thanks for the info.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dhananjay</title>
		<link>http://www.dougreese.com/mysql-fatal-error-1236.html/comment-page-1#comment-7969</link>
		<dc:creator>Dhananjay</dc:creator>
		<pubDate>Fri, 29 May 2009 07:28:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.dougreese.com/?p=23#comment-7969</guid>
		<description>Hi,i too faced similar problem.In my case the replication was broken because of &#039;max_allowed_packet&#039;.A big query was logged in the binary log and the same was not able to communicate with slave.By default the packet size will be 1MB.I have increased the &#039;max_allowed_packet&#039; to 16M on both master and slave.
Steps: stop slave,change master,start slave.

Note:When you&#039;re using CHANGE MASTER TO to set start position for the slave you&#039;re specifying position for SQL thread and so you should use Relay_Master_Log_File:Exec_Master_Log_Pos. Otherwise you&#039;re going to ruin your replication.</description>
		<content:encoded><![CDATA[<p>Hi,i too faced similar problem.In my case the replication was broken because of &#8216;max_allowed_packet&#8217;.A big query was logged in the binary log and the same was not able to communicate with slave.By default the packet size will be 1MB.I have increased the &#8216;max_allowed_packet&#8217; to 16M on both master and slave.<br />
Steps: stop slave,change master,start slave.</p>
<p>Note:When you&#8217;re using CHANGE MASTER TO to set start position for the slave you&#8217;re specifying position for SQL thread and so you should use Relay_Master_Log_File:Exec_Master_Log_Pos. Otherwise you&#8217;re going to ruin your replication.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: doug</title>
		<link>http://www.dougreese.com/mysql-fatal-error-1236.html/comment-page-1#comment-7959</link>
		<dc:creator>doug</dc:creator>
		<pubDate>Wed, 20 May 2009 16:55:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.dougreese.com/?p=23#comment-7959</guid>
		<description>@Halfasleep:  Thanks for the tip.  What version of MySQL are you using?  Maybe that makes a difference.</description>
		<content:encoded><![CDATA[<p>@Halfasleep:  Thanks for the tip.  What version of MySQL are you using?  Maybe that makes a difference.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

