<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Scripting MySQL</title>
	<atom:link href="http://scriptingmysql.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://scriptingmysql.wordpress.com</link>
	<description>- the world&#039;s most popular open source database.</description>
	<lastBuildDate>Wed, 24 Apr 2013 17:17:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>Comment on MySQL Replication &#8211; Creating a New Master/Slave Topology with or without Virtual Machines by Jacob Nikom</title>
		<link>http://scriptingmysql.wordpress.com/2013/02/21/mysql-replication-creating-a-new-masterslave-topology-with-or-without-virtual-machines/#comment-2760</link>
		<dc:creator><![CDATA[Jacob Nikom]]></dc:creator>
		<pubDate>Wed, 24 Apr 2013 17:17:26 +0000</pubDate>
		<guid isPermaLink="false">http://scriptingmysql.wordpress.com/?p=1089#comment-2760</guid>
		<description><![CDATA[Hi Tony,

Thank you for the reply. I thought that if you deleted the auto.cnf and restarted the server you automatically get appropriate UUID regardless whether it is inside or outside VM. Am I correct here?

Best regards,

Jacob Nikom]]></description>
		<content:encoded><![CDATA[<p>Hi Tony,</p>
<p>Thank you for the reply. I thought that if you deleted the auto.cnf and restarted the server you automatically get appropriate UUID regardless whether it is inside or outside VM. Am I correct here?</p>
<p>Best regards,</p>
<p>Jacob Nikom</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL Replication &#8211; Creating a New Master/Slave Topology with or without Virtual Machines by Tony Darnell</title>
		<link>http://scriptingmysql.wordpress.com/2013/02/21/mysql-replication-creating-a-new-masterslave-topology-with-or-without-virtual-machines/#comment-2759</link>
		<dc:creator><![CDATA[Tony Darnell]]></dc:creator>
		<pubDate>Wed, 24 Apr 2013 15:14:43 +0000</pubDate>
		<guid isPermaLink="false">http://scriptingmysql.wordpress.com/?p=1089#comment-2759</guid>
		<description><![CDATA[Jacob,

You only have to edit the auto.cnf file if you copied a VM with MySQL already installed.  Since there will be an existing auto.cnf file on the new VM, you will need to edit that file so that both of the VM&#039;s don&#039;t have the same UUID.  On a fresh install of MySQL, you are correct in that a new auto.cnf file will be generated.

Thanks,

Tony]]></description>
		<content:encoded><![CDATA[<p>Jacob,</p>
<p>You only have to edit the auto.cnf file if you copied a VM with MySQL already installed.  Since there will be an existing auto.cnf file on the new VM, you will need to edit that file so that both of the VM&#8217;s don&#8217;t have the same UUID.  On a fresh install of MySQL, you are correct in that a new auto.cnf file will be generated.</p>
<p>Thanks,</p>
<p>Tony</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL Replication &#8211; Creating a New Master/Slave Topology with or without Virtual Machines by Jacob Nikom</title>
		<link>http://scriptingmysql.wordpress.com/2013/02/21/mysql-replication-creating-a-new-masterslave-topology-with-or-without-virtual-machines/#comment-2758</link>
		<dc:creator><![CDATA[Jacob Nikom]]></dc:creator>
		<pubDate>Wed, 24 Apr 2013 14:24:11 +0000</pubDate>
		<guid isPermaLink="false">http://scriptingmysql.wordpress.com/?p=1089#comment-2758</guid>
		<description><![CDATA[Hi Tony,

Thank you for the great article. This is one of the clearest descriptions of the MySQL installation that I have ever read.
One small correction about auto.cnf file - you don&#039;t have to edit it manually, it will be generated automatically if there is no auto.cnf file in the corresponding data directory. If auto.cnf file already exists, the server will leave it the same.

Best regards,

Jacob Nikom]]></description>
		<content:encoded><![CDATA[<p>Hi Tony,</p>
<p>Thank you for the great article. This is one of the clearest descriptions of the MySQL installation that I have ever read.<br />
One small correction about auto.cnf file &#8211; you don&#8217;t have to edit it manually, it will be generated automatically if there is no auto.cnf file in the corresponding data directory. If auto.cnf file already exists, the server will leave it the same.</p>
<p>Best regards,</p>
<p>Jacob Nikom</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL Replication &#8211; Creating a New Master/Slave Topology with or without Virtual Machines by Mr. D.</title>
		<link>http://scriptingmysql.wordpress.com/2013/02/21/mysql-replication-creating-a-new-masterslave-topology-with-or-without-virtual-machines/#comment-2697</link>
		<dc:creator><![CDATA[Mr. D.]]></dc:creator>
		<pubDate>Sun, 10 Mar 2013 07:04:41 +0000</pubDate>
		<guid isPermaLink="false">http://scriptingmysql.wordpress.com/?p=1089#comment-2697</guid>
		<description><![CDATA[Excellent tutorial.

If there is an existing database on the master.
Make sure that you have restored an exact copy of the master into the slave.

on master
mysqldump -u USERNAME -p DATABASE &gt; dump.sql
copy dump.sql to the slave

on slave
mysqldump -u USERNAME -p DATABASE &lt; dump.sql

now any record you add on the master will show on the slave.]]></description>
		<content:encoded><![CDATA[<p>Excellent tutorial.</p>
<p>If there is an existing database on the master.<br />
Make sure that you have restored an exact copy of the master into the slave.</p>
<p>on master<br />
mysqldump -u USERNAME -p DATABASE &gt; dump.sql<br />
copy dump.sql to the slave</p>
<p>on slave<br />
mysqldump -u USERNAME -p DATABASE &lt; dump.sql</p>
<p>now any record you add on the master will show on the slave.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using MySQL Utilities Workbench Script mysqldbcompare To Compare Two Databases In Replication by Tony Darnell</title>
		<link>http://scriptingmysql.wordpress.com/2013/01/31/using-mysql-utilities-workbench-script-mysqldbcompare-to-compare-two-databases-in-replication/#comment-2512</link>
		<dc:creator><![CDATA[Tony Darnell]]></dc:creator>
		<pubDate>Mon, 18 Feb 2013 15:59:15 +0000</pubDate>
		<guid isPermaLink="false">http://scriptingmysql.wordpress.com/?p=850#comment-2512</guid>
		<description><![CDATA[You can run this on individual tables or databases with different names.  Just separate the names with a colon:  database_server1:database_server2

I am not sure what you are asking for question number one.]]></description>
		<content:encoded><![CDATA[<p>You can run this on individual tables or databases with different names.  Just separate the names with a colon:  database_server1:database_server2</p>
<p>I am not sure what you are asking for question number one.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using MySQL Utilities Workbench Script mysqldbcompare To Compare Two Databases In Replication by freebee99Matt</title>
		<link>http://scriptingmysql.wordpress.com/2013/01/31/using-mysql-utilities-workbench-script-mysqldbcompare-to-compare-two-databases-in-replication/#comment-2449</link>
		<dc:creator><![CDATA[freebee99Matt]]></dc:creator>
		<pubDate>Wed, 13 Feb 2013 20:23:35 +0000</pubDate>
		<guid isPermaLink="false">http://scriptingmysql.wordpress.com/?p=850#comment-2449</guid>
		<description><![CDATA[2 questions...

I&#039;m trying to get this to work between our development database and our production database. We make changes to development and then before pushing the code changes I need to verify that the database are the same and all schema changes have been updated on production

1. Is it possible to pass a test when the auto-increment changes. Many tables are failing due to the auto-increment values changing. This is fine for our needs since all I want to check for is new tables and changes to table schemas

2. Is it possible to run this on databases with different names, ie... database_dev:database_prod - Same database just different names]]></description>
		<content:encoded><![CDATA[<p>2 questions&#8230;</p>
<p>I&#8217;m trying to get this to work between our development database and our production database. We make changes to development and then before pushing the code changes I need to verify that the database are the same and all schema changes have been updated on production</p>
<p>1. Is it possible to pass a test when the auto-increment changes. Many tables are failing due to the auto-increment values changing. This is fine for our needs since all I want to check for is new tables and changes to table schemas</p>
<p>2. Is it possible to run this on databases with different names, ie&#8230; database_dev:database_prod &#8211; Same database just different names</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL Replication with Global Transaction Identifiers – Step-by-Step Install and Addition of Slaves – Part Two by Tony Darnell</title>
		<link>http://scriptingmysql.wordpress.com/2013/01/25/mysql-replication-with-global-transaction-identifiers-step-by-step-install-and-addition-of-slaves-part-two/#comment-1802</link>
		<dc:creator><![CDATA[Tony Darnell]]></dc:creator>
		<pubDate>Tue, 29 Jan 2013 14:07:12 +0000</pubDate>
		<guid isPermaLink="false">http://scriptingmysql.wordpress.com/?p=1041#comment-1802</guid>
		<description><![CDATA[Kristian,

You are correct.  If you are creating a slave from a database where the binary logs have been purged, then using the mysqlreplicate utility isn&#039;t your best option.  In this case, you would need to copy the data from the master to the slave, and then start GTID.  You could copy the data with &lt;a href=&quot;http://dev.mysql.com/doc/refman/5.6/en/mysqldump.html&quot; rel=&quot;nofollow&quot;&gt;mysqldump&lt;/a&gt; or &lt;a href=&quot;http://dev.mysql.com/doc/mysql-enterprise-backup/3.8/en/&quot; / rel=&quot;nofollow&quot;&gt;MySQL Enterprise Backup.&lt;/a&gt;  &lt;a href=&quot;http://dev.mysql.com/doc/refman/5.6/en/replication-gtids-howto.html&quot; rel=&quot;nofollow&quot;&gt;This link&lt;/a&gt; explains how to use GTID&#039;s if you already have a master/slave configuration.

Thanks.]]></description>
		<content:encoded><![CDATA[<p>Kristian,</p>
<p>You are correct.  If you are creating a slave from a database where the binary logs have been purged, then using the mysqlreplicate utility isn&#8217;t your best option.  In this case, you would need to copy the data from the master to the slave, and then start GTID.  You could copy the data with <a href="http://dev.mysql.com/doc/refman/5.6/en/mysqldump.html" rel="nofollow">mysqldump</a> or <a href="http://dev.mysql.com/doc/mysql-enterprise-backup/3.8/en/" / rel="nofollow">MySQL Enterprise Backup.</a>  <a href="http://dev.mysql.com/doc/refman/5.6/en/replication-gtids-howto.html" rel="nofollow">This link</a> explains how to use GTID&#8217;s if you already have a master/slave configuration.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL Replication with Global Transaction Identifiers – Step-by-Step Install and Addition of Slaves – Part Two by Kristian Nielsen</title>
		<link>http://scriptingmysql.wordpress.com/2013/01/25/mysql-replication-with-global-transaction-identifiers-step-by-step-install-and-addition-of-slaves-part-two/#comment-1637</link>
		<dc:creator><![CDATA[Kristian Nielsen]]></dc:creator>
		<pubDate>Sat, 26 Jan 2013 09:28:08 +0000</pubDate>
		<guid isPermaLink="false">http://scriptingmysql.wordpress.com/?p=1041#comment-1637</guid>
		<description><![CDATA[You use --start-from-beginning, which requires that server keeps _all_ binary log files forever, _and_ that slave runs _all_ transactions ever done on the server before it is ready. That does not seem very practical?

It would be nice to see how to add a new GTID slave without --start-from-beginning. This does not seem to be mentioned anywhere (for example, the mysqlreplicate page has no mention of GTID).]]></description>
		<content:encoded><![CDATA[<p>You use &#8211;start-from-beginning, which requires that server keeps _all_ binary log files forever, _and_ that slave runs _all_ transactions ever done on the server before it is ready. That does not seem very practical?</p>
<p>It would be nice to see how to add a new GTID slave without &#8211;start-from-beginning. This does not seem to be mentioned anywhere (for example, the mysqlreplicate page has no mention of GTID).</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using MySQL and Perl to Create, Edit and Delete Information Via a Web Page by alexandervergara</title>
		<link>http://scriptingmysql.wordpress.com/2011/11/11/using-mysql-and-perl-to-create-edit-and-delete-information-via-a-web-page/#comment-908</link>
		<dc:creator><![CDATA[alexandervergara]]></dc:creator>
		<pubDate>Tue, 11 Dec 2012 17:02:27 +0000</pubDate>
		<guid isPermaLink="false">http://scriptingmysql.wordpress.com/?p=474#comment-908</guid>
		<description><![CDATA[Works perfect! I just want to say thanks and remid to visitors that if someone is using a local mysql database should put &quot;localhost&quot; in the accesSM file remplacing the IP address]]></description>
		<content:encoded><![CDATA[<p>Works perfect! I just want to say thanks and remid to visitors that if someone is using a local mysql database should put &#8220;localhost&#8221; in the accesSM file remplacing the IP address</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using the MySQL Script mysqlfailover for Automatic Failover with MySQL 5.6 GTID Replication by Ruben Cardenal</title>
		<link>http://scriptingmysql.wordpress.com/2012/12/06/using-the-mysql-script-mysqlfailover-for-automatic-failover-with-mysql-5-6-gtid-replication/#comment-906</link>
		<dc:creator><![CDATA[Ruben Cardenal]]></dc:creator>
		<pubDate>Tue, 11 Dec 2012 15:19:53 +0000</pubDate>
		<guid isPermaLink="false">http://scriptingmysql.wordpress.com/?p=786#comment-906</guid>
		<description><![CDATA[Killing -9 the mysqld process is the worst thing you can do (regardless of this testing purpose), specially when posting &quot;tutorials&quot; for people to follow. Better make a -TERM (or -15). Interesting article anyway :)]]></description>
		<content:encoded><![CDATA[<p>Killing -9 the mysqld process is the worst thing you can do (regardless of this testing purpose), specially when posting &#8220;tutorials&#8221; for people to follow. Better make a -TERM (or -15). Interesting article anyway :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
