<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>PlanetMysql.ru - информация о СУБД MySQL &#187; workbench</title>
	<atom:link href="http://planetmysql.ru/category/workbench/feed/" rel="self" type="application/rss+xml" />
	<link>http://planetmysql.ru</link>
	<description>Блог о самой популярной СУБД MySQL</description>
	<lastBuildDate>Fri, 25 May 2012 10:47:20 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>Compare and Synchronize Databases with MySQL Utilities</title>
		<link>http://drcharlesbell.blogspot.com/2012/05/compare-and-synchronize-databases-with.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=compare-and-synchronize-databases-with-mysql-utilities</link>
		<comments>http://drcharlesbell.blogspot.com/2012/05/compare-and-synchronize-databases-with.html#comments</comments>
		<pubDate>Wed, 09 May 2012 20:25:02 +0000</pubDate>
		<dc:creator>Chuck Bell</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[compare]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[synchronization]]></category>
		<category><![CDATA[workbench]]></category>

		<guid isPermaLink="false">http://planetmysql.ru/?guid=a1bca4fc601318ba6ee9081ae7cac812</guid>
		<description><![CDATA[The mysqldiff and mysqldbcompare utilities were designed to produce a difference report for objects and in the case of mysqldbcompare the data. Thus, you can compare two databases and produce a report of the differences in both object definitions and data rows.&#160;While that may be very useful, would it not be much more useful to have the ability to produce SQL commands to transform databases?  Wait no longer! The latest release of MySQL Utilities has added the ability to generate SQL transformation statements by both the mysqldiff and mysqldbcompare utilities.&#160;To generate SQL transformations in either utility, simply use the --sql option to tell the utility to produce the statements.Object Transformations with mysqldiffIf you would like to compare the schema of two databases (the objects and their definitions), mysqldiff can do that for you and produce a difference report in a number of formats including CSV, TAB, GRID, and Vertical (like the mysql client’s \G option). However, its greatest feature is the ability to generate transformation statements to alter the objects so that they conform. Best of all, mysqldiff works on all object types including the ability to recognize renames so you can get a true transformation path for all objects. For even greater flexibility, you can generate the difference in both directions. This means you can generate transformations for db1-to-db2 as well as db2-to-db1 in the same pass. Cool.The following shows an example of running mysqldiff on two servers where some of the objects have diverged. It also shows how you can generate the reverse transformation statements.$ mysqldiff --server1=root@localhost --server2=root@otherhost \--changes-for=server1 --show-reverse util_test:util_test \--force --difftype=SQL# server1 on localhost: ... connected.# server2 on localhost: ... connected.# WARNING: Objects in server1.util_test but not in server2.util_test:# EVENT: e1# Comparing util_test to util_test [PASS]# Comparing util_test.f1 to util_test.f1 [PASS]# Comparing util_test.p1 to util_test.p1 [PASS]# Comparing util_test.t1 to util_test.t1 [PASS]# Comparing util_test.t2 to util_test.t2 [PASS]# Comparing util_test.t3 to util_test.t3 [FAIL]# Transformation for --changes-for=server1:#ALTER TABLE util_test.t3 DROP COLUMN b, ADD COLUMN d char(30) NULL AFTER a ENGINE=MyISAM;## Transformation for reverse changes (--changes-for=server2):## ALTER TABLE util_test.t3 # DROP COLUMN d, # ADD COLUMN b char(30) NULL AFTER a, # ENGINE=InnoDB;## Comparing util_test.trg to util_test.trg [FAIL]# Transformation for --changes-for=server1:#DROP TRIGGER IF EXISTS `util_test`.`trg`;CREATE DEFINER=root@localhost TRIGGER util_test.trg BEFORE UPDATE ON util_test.t1 FOR EACH ROW INSERT INTO util_test.t1 VALUES('Wax on, wax off');## Transformation for reverse changes (--changes-for=server2):## DROP TRIGGER IF EXISTS `util_test`.`trg`;# CREATE DEFINER=root@localhost TRIGGER util_test.trg AFTER INSERT ON util_test.t1 # FOR EACH ROW INSERT INTO util_test.t2 VALUES('Test objects count');## Comparing util_test.v1 to util_test.v1 [FAIL]# Transformation for --changes-for=server1:#ALTER VIEW util_test.v1 AS select `util_test`.`t2`.`a` AS `a` from `util_test`.`t2`;## Transformation for reverse changes (--changes-for=server2):## ALTER VIEW util_test.v1 AS # select `util_test`.`t1`.`a` AS `a` from `util_test`.`t1`;#Compare failed. One or more differences found.Generating Data Transformation with mysqldbcompareThe mysqldbcompare utility provides all of the object difference functionality included in mysqldiff along with the ability to generate transformation SQL statements for data. This means you can make sure your test or development databases are similar to your production databases or perhaps even your offline, read only databases match your online databases. Like mysqldiff, you can also get the reverse transformations at the same time. Very cool, eh?The following shows an example of running mysqldbcompare to generate differences in data.$ mysqldbcompare --server1=root@localhost --server2=root@otherhost \inventory:inventory -a --difftype=sql --changes-for=server1 \--show-reverse# server1 on localhost: ... connected.# server2 on localhost: ... connected.# Checking databases inventory on server1 and inventory on server2## WARNING: Objects in server1.inventory but not in server2.inventory:#         VIEW: finishing_up#         VIEW: cleaning#[...] # TABLE     supplier                                pass    FAIL    FAIL    ## Row counts are not the same among inventory.supplier and inventory.supplier.## Transformation for --changes-for=server1:## Data differences found among rows:UPDATE inventory.supplier SET name = 'Wesayso Corporation' WHERE code = '2';INSERT INTO inventory.supplier (code, name) VALUES('3', 'Never Enough Inc.');## Transformation for reverse changes (--changes-for=server2):## # Data differences found among rows:# UPDATE inventory.supplier SET name = 'Never Enough Inc.' WHERE code = '2';# DELETE FROM inventory.supplier WHERE code = '3';## Database consistency check failed.## ...done]]></description>
			<content:encoded><![CDATA[<span>The mysqldiff and mysqldbcompare utilities were designed to produce a difference report for objects and in the case of mysqldbcompare the data. Thus, you can compare two databases and produce a report of the differences in both object definitions and data rows.&nbsp;</span><br /><br /><span>While that may be very useful, would it not be much more useful to have the ability to produce SQL commands to transform databases?  Wait no longer! The latest release of MySQL Utilities has added the ability to generate SQL transformation statements by both the mysqldiff and mysqldbcompare utilities.&nbsp;</span><br /><br /><span>To generate SQL transformations in either utility, simply use the --sql option to tell the utility to produce the statements.</span><br /><br /><span><b>Object Transformations with mysqldiff</b></span><br /><br /><span>If you would like to compare the schema of two databases (the objects and their definitions), mysqldiff can do that for you and produce a difference report in a number of formats including CSV, TAB, GRID, and Vertical (like the mysql client’s \G option). </span><br /><br /><span>However, its greatest feature is the ability to generate transformation statements to alter the objects so that they conform. Best of all, mysqldiff works on all object types including the ability to recognize renames so you can get a true transformation path for all objects. For even greater flexibility, you can generate the difference in both directions. This means you can generate transformations for db1-to-db2 as well as db2-to-db1 in the same pass. Cool.</span><br /><br /><span>The following shows an example of running mysqldiff on two servers where some of the objects have diverged. It also shows how you can generate the reverse transformation statements.</span><br /><br /><span><br style="font-family: &quot;Courier New&quot;,Courier,monospace;" /></span><span><span>$ mysqldiff --server1=root@localhost --server2=root@otherhost \</span></span><br /><span><span>--changes-for=server1 --show-reverse util_test:util_test \</span></span><br /><span><span>--force --difftype=SQL</span></span><br /><span><span># server1 on localhost: ... connected.</span></span><br /><span><span># server2 on localhost: ... connected.</span></span><br /><span><span># WARNING: Objects in server1.util_test but not in server2.util_test:</span></span><br /><span><span># EVENT: e1</span></span><br /><span><span># Comparing util_test to util_test [PASS]</span></span><br /><span><span># Comparing util_test.f1 to util_test.f1 [PASS]</span></span><br /><span><span># Comparing util_test.p1 to util_test.p1 [PASS]</span></span><br /><span><span># Comparing util_test.t1 to util_test.t1 [PASS]</span></span><br /><span><span># Comparing util_test.t2 to util_test.t2 [PASS]</span></span><br /><span><span># Comparing util_test.t3 to util_test.t3 [FAIL]</span></span><br /><span><span># Transformation for --changes-for=server1:</span></span><br /><span><span>#</span></span><br /><span><span>ALTER TABLE util_test.t3 </span></span><br /><span><span>DROP COLUMN b, </span></span><br /><span><span>ADD COLUMN d char(30) NULL AFTER a </span></span><br /><span><span>ENGINE=MyISAM;</span></span><br /><span><span>#</span></span><br /><span><span># Transformation for reverse changes (--changes-for=server2):</span></span><br /><span><span>#</span></span><br /><span><span># ALTER TABLE util_test.t3 </span></span><br /><span><span># DROP COLUMN d, </span></span><br /><span><span># ADD COLUMN b char(30) NULL AFTER a, </span></span><br /><span><span># ENGINE=InnoDB;</span></span><br /><span><span>#</span></span><br /><span><span># Comparing util_test.trg to util_test.trg [FAIL]</span></span><br /><span><span># Transformation for --changes-for=server1:</span></span><br /><span><span>#</span></span><br /><span><span>DROP TRIGGER IF EXISTS `util_test`.`trg`;</span></span><br /><span><span>CREATE DEFINER=root@localhost TRIGGER util_test.trg BEFORE UPDATE ON util_test.t1 </span></span><br /><span><span>FOR EACH ROW INSERT INTO util_test.t1 VALUES('Wax on, wax off');</span></span><br /><span><span>#</span></span><br /><span><span># Transformation for reverse changes (--changes-for=server2):</span></span><br /><span><span>#</span></span><br /><span><span># DROP TRIGGER IF EXISTS `util_test`.`trg`;</span></span><br /><span><span># CREATE DEFINER=root@localhost TRIGGER util_test.trg AFTER INSERT ON util_test.t1 </span></span><br /><span><span># FOR EACH ROW INSERT INTO util_test.t2 VALUES('Test objects count');</span></span><br /><span><span>#</span></span><br /><span><span># Comparing util_test.v1 to util_test.v1 [FAIL]</span></span><br /><span><span># Transformation for --changes-for=server1:</span></span><br /><span><span>#</span></span><br /><span><span>ALTER VIEW util_test.v1 AS </span></span><br /><span><span>select `util_test`.`t2`.`a` AS `a` from `util_test`.`t2`;</span></span><br /><span><span>#</span></span><br /><span><span># Transformation for reverse changes (--changes-for=server2):</span></span><br /><span><span>#</span></span><br /><span><span># ALTER VIEW util_test.v1 AS </span></span><br /><span><span># select `util_test`.`t1`.`a` AS `a` from `util_test`.`t1`;</span></span><br /><span><span>#</span></span><br /><span><span>Compare failed. One or more differences found.</span></span><br /><br /><span><b>Generating Data Transformation with mysqldbcompare</b></span><br /><br /><span>The mysqldbcompare utility provides all of the object difference functionality included in mysqldiff along with the ability to generate transformation SQL statements for data. This means you can make sure your test or development databases are similar to your production databases or perhaps even your offline, read only databases match your online databases. Like mysqldiff, you can also get the reverse transformations at the same time. Very cool, eh?</span><br /><br /><span>The following shows an example of running mysqldbcompare to generate differences in data.</span><br /><br /><div><span>$ mysqldbcompare --server1=root@localhost --server2=root@otherhost \</span></div><div><span>inventory:inventory -a --difftype=sql --changes-for=server1 \</span></div><div><span>--show-reverse</span></div><div><span># server1 on localhost: ... connected.</span></div><div><span># server2 on localhost: ... connected.</span></div><div><span># Checking databases inventory on server1 and inventory on server2</span></div><div><span>#</span></div><div><span># WARNING: Objects in server1.inventory but not in server2.inventory:</span></div><div><span>#         VIEW: finishing_up</span></div><div><span>#         VIEW: cleaning</span></div><div><span>#</span></div><div><span><br /></span></div><div><span>[...] </span></div><div><span><br /></span></div><div></div><div><span></span><span># TABLE     supplier                                pass    FAIL    FAIL    </span></div><div><span>#</span></div><div><span># Row counts are not the same among inventory.supplier and inventory.supplier.</span></div><div><span>#</span></div><div><span># Transformation for --changes-for=server1:</span></div><div><span>#</span></div><div><span># Data differences found among rows:</span></div><div><span>UPDATE inventory.supplier SET name = 'Wesayso Corporation' WHERE code = '2';</span></div><div><span>INSERT INTO inventory.supplier (code, name) VALUES('3', 'Never Enough Inc.');</span></div><div><span>#</span></div><div><span># Transformation for reverse changes (--changes-for=server2):</span></div><div><span>#</span></div><div><span># # Data differences found among rows:</span></div><div><span># UPDATE inventory.supplier SET name = 'Never Enough Inc.' WHERE code = '2';</span></div><div><span># DELETE FROM inventory.supplier WHERE code = '3';</span></div><div><span>#</span></div><div><span># Database consistency check failed.</span></div><div><span>#</span></div><div><span># ...done</span></div><div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/2959317805805542041-3973032454519382820?l=drcharlesbell.blogspot.com" alt="" /></div><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=33172&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=33172&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2012/05/10/compare-and-synchronize-databases-with-mysql-utilities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Utilities Frequently Asked Questions</title>
		<link>http://drcharlesbell.blogspot.com/2012/05/mysql-utilities-frequently-asked.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mysql-utilities-frequently-asked-questions</link>
		<comments>http://drcharlesbell.blogspot.com/2012/05/mysql-utilities-frequently-asked.html#comments</comments>
		<pubDate>Wed, 09 May 2012 20:13:32 +0000</pubDate>
		<dc:creator>Chuck Bell</dc:creator>
				<category><![CDATA[administration]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Utilities]]></category>
		<category><![CDATA[workbench]]></category>

		<guid isPermaLink="false">http://planetmysql.ru/?guid=ae8b1b577ccde9021d3aee106ca1d1db</guid>
		<description><![CDATA[Momentum for MySQL Utilities continues to build.  I hosted a webinar recently about MySQL Utilities (available on-demand from the link below), which generated a lot of interest and some good questions. http://event.on24.com/eventRegistration/EventLobbyServlet?target=lobby.jsp&#38;eventid=448952&#38;sessionid=1&#38;key=7E741ED049DFBF49D10C90A2B62E410F&#38;eventuserid=63530507With so many questions and ideas coming in I decided to create a blog of FAQs. I plan to add these to the MySQL documentation as well.  Keep your ideas and questions coming!I hope you find these questions enlightening. I have grouped them for easier reading. You can find the MySQL Utilities documentation using the link below. http://dev.mysql.com/doc/workbench/en/mysql-utilities.htmlGeneralAre these utilities present in the community version of MySQL?They are included in the community edition of the MySQL Workbench product, which can be downloaded from the following link. http://www.mysql.com/downloads/workbench/Should/can we run this on live data?Yes. Naturally, you would want to test some operations before jumping directly into a production environment. For example, you may want to test any database migration, transformation, or similar massive change in a test environment. Can we use the utilities in a production environment under the GPL license?Yes. MySQL Utilities is part of MySQL Workbench so all such licenses apply accordingly.Storage EnginesCan the utilities be used with MyISAM or CSV?Yes. There are no storage engine specific limitations in using the utilities. There are some features written specifically for InnoDB so those may not apply but in general no utility is storage engine specific. For example, the mysqldiskusage utility shows exact sizes for MyISAM and InnoDB files but uses estimated sizes for any other storage engine based on number of rows and row size.PlatformsCan I use MySQL Utilities on Linux?Yes. MySQL Utilities runs on all platforms supported by MySQL Workbench.Can the utilities be used on Windows?Yes!Do the utilities work both for window-based and linux-based servers?Yes! They work for any server hosting MySQL.InstallationDo we have to install the utilities with rpm or can we use the tar ball extract and run from there?MySQL Utilities is installed as part of MySQL Workbench. You can download and install Workbench using several platform-specific installers. You can also branch and download MySQL Utilities from Launchpad. You can also build and install it from the source code you’ve downloaded using typical Python install steps (python ./setup.py install). https://launchpad.net/mysql-utilitiesWhat's the link to download these utilities?MySQL Utilities is part of MySQL Workbench. You can download MySQL Workbench from the following link.http://www.mysql.com/downloads/workbench/LockingDo the utilities lock tables while running?Yes, but only for situations that require locks. The mysqldbexport utility also allows you to specify what type of lock to use: no-locks = do not use any table lockslock-all = use table locks but no transaction and no consistent readsnaphot (default) = consistent read using a single transaction.Are there any utilities that can show DB locks (like which query is blocking which one)?No, not currently but that is an excellent suggestion!mysqldbcompareHow fast is mysqldbcompare? Say a table with 10 million rows?It is difficult to predict a precise estimate of run time based on number of rows. However, it is generally such that the more rows there are the longer the utility will run. The mysqldbcompare utility is used to produce a difference of two databases. It creates a difference between objects of the same name for either object definitions, data, or both. When comparing object definitions, the performance is very fast because there isn’t a lot of processing involved. When comparing data, the utility uses an algorithm to create checksums for each row in the table. During this phase, the tables are locked. Once that stage is done, the tables are unlocked and the algorithm begins to compact the checksums into chunks, which are later compared between the servers. If the checksums differ, the chunks are expanded and the differences calculated. Thus, for tables containing millions of rows the utility will take some time to complete. The best time to run this utility is during low usage periods such as times reserved for upgrades, backups, and similar operations.How will running mysqldbcompare effect a production database?If generating a difference for data, the utility will lock the tables long enough to calculate a checksum for each row. Depending on the number of rows this could be for a long time and in those cases you should run mysqldbcompare during low usage periods. The utility will use a consistent read to lock InnoDB tables but will issue table locks for non-InnoDB tables.Will mysqldbcompare cause table locking on MyISAM table?Yes. A table lock is issued during checksum creation.What is the load going to be on the servers when mysqldbcompare runs?The load on the server itself is minimal. There is moderate CPU usage during checksum creation but nothing that should cause a problem. The longest period of activity is when the table scans are executed for creating a checksum for each row.mysqldbexportIs mysqldbexport similar to mysqldump?Yes, the mysqldbexport is designed to export data in a row-by-row or logical fashion. However, you can export data in CSV, TAB, Vertical formats as well as SQL statements using CREATE TABLE, INSERT, etc. making mysqldbexport more versatile than mysqldump. You would use mysqldbexport in situations where you need special machine or human readable output for operations like transforming the data or examining the structures in more detail – especially if you need a format other than SQL statements.Replication UtilitiesAre the high availability features available for version 5.5 or 5.6?The general replication utilities such as mysqlrplcheck and mysqlreplicate will work with servers version 5.0 and later. The newest high availability feature, failover, in mysqlrpladmin and mysqlfailover work only for servers that support global transaction identifiers (GTIDs) which were added in version 5.6.5. You can discover more about GTIDs from the following blog by Luis Soares.http://d2-systems.blogspot.co.uk/2012/04/global-transaction-identifiers-are-in.htmlWhere do I get more info about mysqlrpladmin?The online MySQL Workbench Manual has information about each utility. You can also use the --help option to show all options and their descriptions.http://dev.mysql.com/doc/workbench/en/mysql-utilities.htmlHow can I use the utilities to test replication on a single host?You can use mysqlserverclone to clone an existing, running instance of MySQL or clone from an installation (basedir), then mysqlreplicate to create the replication topology. Is the replication failover feature only for version 5.6? Yes. It requires support for global transaction identifiers, which were added in version 5.6.5. A developer milestone release of 5.6 is available for download.http://dev.mysql.com/downloads/mysql/#downloads(Select the Development Releases tab)What features of mysqlrpladmin will work on version 5.5?All of the features except slave election and failover.Do you need to create a replication user on the slave site other than the master?The mysqlreplicate utility provides an option to use a specific user on the master for replication or it will create a user by default. You can also request that a new user be created during the operation.]]></description>
			<content:encoded><![CDATA[<p>Momentum for MySQL Utilities continues to build.  I hosted a webinar recently about MySQL Utilities (available on-demand from the link below), which generated a lot of interest and some good questions. </p><p><a href="http://event.on24.com/eventRegistration/EventLobbyServlet?>http://event.on24.com/eventRegistration/EventLobbyServlet?target=lobby.jsp&eventid=448952&sessionid=1&key=7E741ED049DFBF49D10C90A2B62E410F&eventuserid=63530507</a></p><p>With so many questions and ideas coming in I decided to create a blog of FAQs. I plan to add these to the MySQL documentation as well.  Keep your ideas and questions coming!</p><p>I hope you find these questions enlightening. I have grouped them for easier reading. You can find the MySQL Utilities documentation using the link below. </p><p><a href="http://dev.mysql.com/doc/workbench/en/mysql-utilities.html">http://dev.mysql.com/doc/workbench/en/mysql-utilities.html</a></p><p><strong>General</strong></p><p><em>Are these utilities present in the community version of MySQL?</em></p><p>They are included in the community edition of the MySQL Workbench product, which can be downloaded from the following link. </p><p><a href="http://www.mysql.com/downloads/workbench/">http://www.mysql.com/downloads/workbench/</a></p><p><em>Should/can we run this on live data?</em></p><p>Yes. Naturally, you would want to test some operations before jumping directly into a production environment. For example, you may want to test any database migration, transformation, or similar massive change in a test environment. </p><p><em>Can we use the utilities in a production environment under the GPL license?</em></p><p>Yes. MySQL Utilities is part of MySQL Workbench so all such licenses apply accordingly.</p><p><strong>Storage Engines</strong></p><p><em>Can the utilities be used with MyISAM or CSV?</em></p><p>Yes. There are no storage engine specific limitations in using the utilities. There are some features written specifically for InnoDB so those may not apply but in general no utility is storage engine specific. For example, the mysqldiskusage utility shows exact sizes for MyISAM and InnoDB files but uses estimated sizes for any other storage engine based on number of rows and row size.</p><p><strong>Platforms</strong></p><p><em>Can I use MySQL Utilities on Linux?</em></p><p>Yes. MySQL Utilities runs on all platforms supported by MySQL Workbench.</p><p><em>Can the utilities be used on Windows?</em></p><p>Yes!</p><p><em>Do the utilities work both for window-based and linux-based servers?</em></p><p>Yes! They work for any server hosting MySQL.</p><p><strong>Installation</strong></p><p><em>Do we have to install the utilities with rpm or can we use the tar ball extract and run from there?</em></p><p>MySQL Utilities is installed as part of MySQL Workbench. You can download and install Workbench using several platform-specific installers. </p><p>You can also branch and download MySQL Utilities from Launchpad. You can also build and install it from the source code you’ve downloaded using typical Python install steps (python ./setup.py install). </p><p><a href="https://launchpad.net/mysql-utilities">https://launchpad.net/mysql-utilities</a></p><p><em>What's the link to download these utilities?</em></p><p>MySQL Utilities is part of MySQL Workbench. You can download MySQL Workbench from the following link.</p><p><a href="http://www.mysql.com/downloads/workbench/">http://www.mysql.com/downloads/workbench/</a></p><p><strong>Locking</strong></p><p><em>Do the utilities lock tables while running?</em></p><p>Yes, but only for situations that require locks. The mysqldbexport utility also allows you to specify what type of lock to use: </p><p>no-locks = do not use any table locks</p><p>lock-all = use table locks but no transaction and no consistent read</p><p>snaphot (default) = consistent read using a single transaction.</p><p><em>Are there any utilities that can show DB locks (like which query is blocking which one)?</em></p><p>No, not currently but that is an excellent suggestion!</p><p><strong>mysqldbcompare</strong></p><p><em>How fast is mysqldbcompare? Say a table with 10 million rows?</em></p><p>It is difficult to predict a precise estimate of run time based on number of rows. However, it is generally such that the more rows there are the longer the utility will run. The mysqldbcompare utility is used to produce a difference of two databases. It creates a difference between objects of the same name for either object definitions, data, or both. When comparing object definitions, the performance is very fast because there isn’t a lot of processing involved. When comparing data, the utility uses an algorithm to create checksums for each row in the table. During this phase, the tables are locked. Once that stage is done, the tables are unlocked and the algorithm begins to compact the checksums into chunks, which are later compared between the servers. If the checksums differ, the chunks are expanded and the differences calculated. Thus, for tables containing millions of rows the utility will take some time to complete. The best time to run this utility is during low usage periods such as times reserved for upgrades, backups, and similar operations.</p><p><em>How will running mysqldbcompare effect a production database?</em></p><p>If generating a difference for data, the utility will lock the tables long enough to calculate a checksum for each row. Depending on the number of rows this could be for a long time and in those cases you should run mysqldbcompare during low usage periods. The utility will use a consistent read to lock InnoDB tables but will issue table locks for non-InnoDB tables.</p><p><em>Will mysqldbcompare cause table locking on MyISAM table?</em></p><p>Yes. A table lock is issued during checksum creation.</p><p><em>What is the load going to be on the servers when mysqldbcompare runs?</em></p><p>The load on the server itself is minimal. There is moderate CPU usage during checksum creation but nothing that should cause a problem. The longest period of activity is when the table scans are executed for creating a checksum for each row.</p><p><strong>mysqldbexport</strong></p><p><em>Is mysqldbexport similar to mysqldump?</em></p><p>Yes, the mysqldbexport is designed to export data in a row-by-row or logical fashion. However, you can export data in CSV, TAB, Vertical formats as well as SQL statements using CREATE TABLE, INSERT, etc. making mysqldbexport more versatile than mysqldump. You would use mysqldbexport in situations where you need special machine or human readable output for operations like transforming the data or examining the structures in more detail – especially if you need a format other than SQL statements.</p><p><strong>Replication Utilities</strong></p><p><em>Are the high availability features available for version 5.5 or 5.6?</em></p><p>The general replication utilities such as mysqlrplcheck and mysqlreplicate will work with servers version 5.0 and later. The newest high availability feature, failover, in mysqlrpladmin and mysqlfailover work only for servers that support global transaction identifiers (GTIDs) which were added in version 5.6.5. </p><p>You can discover more about GTIDs from the following blog by Luis Soares.</p><p><a href="http://d2-systems.blogspot.co.uk/2012/04/global-transaction-identifiers-are-in.html">http://d2-systems.blogspot.co.uk/2012/04/global-transaction-identifiers-are-in.html</a></p><p><em>Where do I get more info about mysqlrpladmin?</em></p><p>The online MySQL Workbench Manual has information about each utility. You can also use the --help option to show all options and their descriptions.</p><p><a href="http://dev.mysql.com/doc/workbench/en/mysql-utilities.html">http://dev.mysql.com/doc/workbench/en/mysql-utilities.html</a></p><p><em>How can I use the utilities to test replication on a single host?</em></p><p>You can use mysqlserverclone to clone an existing, running instance of MySQL or clone from an installation (basedir), then mysqlreplicate to create the replication topology. </p><p><em>Is the replication failover feature only for version 5.6? </em></p><p>Yes. It requires support for global transaction identifiers, which were added in version 5.6.5. A developer milestone release of 5.6 is available for download.</p><p><a href="http://dev.mysql.com/downloads/mysql/#downloads">http://dev.mysql.com/downloads/mysql/#downloads</a></p><p>(Select the Development Releases tab)</p><p><em>What features of mysqlrpladmin will work on version 5.5?</em></p><p>All of the features except slave election and failover.</p><p><em>Do you need to create a replication user on the slave site other than the master?</em></p><p>The mysqlreplicate utility provides an option to use a specific user on the master for replication or it will create a user by default. You can also request that a new user be created during the operation.</p><div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/2959317805805542041-8307641094060823604?l=drcharlesbell.blogspot.com" alt="" /></div><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=33171&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=33171&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2012/05/10/mysql-utilities-frequently-asked-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Workbench 5.2.39 GA Released</title>
		<link>https://blogs.oracle.com/mysqlworkbench/entry/mysql_workbench_5_2_39?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mysql-workbench-5-2-39-ga-released</link>
		<comments>https://blogs.oracle.com/mysqlworkbench/entry/mysql_workbench_5_2_39#comments</comments>
		<pubDate>Tue, 10 Apr 2012 20:36:28 +0000</pubDate>
		<dc:creator>Michael Zinner</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[workbench]]></category>

		<guid isPermaLink="false">https://blogs.oracle.com/mysqlworkbench/entry/mysql_workbench_5_2_39</guid>
		<description><![CDATA[The MySQL Developer Tools team is announcing the next maintenance 
release of it’s flagship product, MySQL Workbench, version 5.2.39. This version contains MySQL Utilities 1.0.5, a set of command line Python utilities for helping performing and scripting various administration tasks for MySQL. A complete list of changes in this release of the Utilities can be found at:http://dev.mysql.com/doc/workbench/en/wb-utils-news-1-0-5.html  
  More than 74 bugs were fixed in this version.
 
  MySQL Workbench 5.2 GA 
  
   • Data Modeling
 
     • Query (replaces the old MySQL Query Browser)
 
     • Administration (replaces the old MySQL Administrator)
 
  Please get your copy from our Download site.  
  Sources and binary packages are available for several platforms, including Windows, Mac OS X and Linux.

http://dev.mysql.com/downloads/workbench/

 
  Workbench Documentation can be found here.
 
  
http://dev.mysql.com/doc/workbench/en/index.html
  Utilities Documentation can be found here.http://dev.mysql.com/doc/workbench/en/mysql-utilities.html  
  In addition to the new Query/SQL Development and Administration 
modules, version 5.2 features improved stability and performance – 
especially in Windows, where OpenGL support has been enhanced and the UI
 was optimized to offer better responsiveness.  
  This release also includes improvements to the scripting capabilities of the SQL Editor. You can read more about it in

http://wb.mysql.com/workbench/doc/ 
  

For a detailed list of resolved issues, see the change log.
 
  
http://dev.mysql.com/doc/workbench/en/wb-change-history.html

 
  If you need any additional info or help please get in touch with us.

Post in our forums or leave comments on our blog pages.
 
  
- The MySQL Workbench Team]]></description>
			<content:encoded><![CDATA[<p>
The MySQL Developer Tools team is announcing the next maintenance 
release of it’s flagship product, MySQL Workbench, version 5.2.39. This version contains MySQL Utilities 1.0.5, a set of command line Python utilities for helping performing and scripting various administration tasks for MySQL. A complete list of changes in this release of the Utilities can be found at:<br /><a href="http://dev.mysql.com/doc/workbench/en/wb-utils-news-1-0-5.html">http://dev.mysql.com/doc/workbench/en/wb-utils-news-1-0-5.html</a> </p> 
  <p>More than 74 bugs were fixed in this version.
</p> 
  <h2>MySQL Workbench 5.2 GA</h2> 
  <p>
   • Data Modeling
</p> 
  <p>   • Query (replaces the old MySQL Query Browser)
</p> 
  <p>   • Administration (replaces the old MySQL Administrator)
</p> 
  <p>Please get your copy from our Download site. </p> 
  <p>Sources and binary packages are available for several platforms, including Windows, Mac OS X and Linux.

<a href="http://dev.mysql.com/downloads/workbench/">http://dev.mysql.com/downloads/workbench/

</a></p> 
  <p>Workbench Documentation can be found here.
</p> 
  <p><a href="http://dev.mysql.com/doc/workbench/en/index.html">
http://dev.mysql.com/doc/workbench/en/index.html</a></p>
  <p>Utilities Documentation can be found here.<br /><a href="http://dev.mysql.com/doc/workbench/en/mysql-utilities.html">http://dev.mysql.com/doc/workbench/en/mysql-utilities.html</a> <br /></p> 
  <p>In addition to the new Query/SQL Development and Administration 
modules, version 5.2 features improved stability and performance – 
especially in Windows, where OpenGL support has been enhanced and the UI
 was optimized to offer better responsiveness. </p> 
  <p>This release also includes improvements to the scripting capabilities of the SQL Editor. You can read more about it in

<a href="http://wb.mysql.com/workbench/doc/">http://wb.mysql.com/workbench/doc/</a></p> 
  <p>

For a detailed list of resolved issues, see the change log.
</p> 
  <p><a href="http://dev.mysql.com/doc/workbench/en/wb-change-history.html">
http://dev.mysql.com/doc/workbench/en/wb-change-history.html

</a></p> 
  <p>If you need any additional info or help please get in touch with us.

Post in our forums or leave comments on our blog pages.
</p> 
  <p>
- The MySQL Workbench Team
 </p><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=32816&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=32816&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2012/04/11/mysql-workbench-5-2-39-ga-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Utilities and Global Transaction Identifiers</title>
		<link>http://drcharlesbell.blogspot.com/2012/04/mysql-utilities-and-global-transaction.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mysql-utilities-and-global-transaction-identifiers</link>
		<comments>http://drcharlesbell.blogspot.com/2012/04/mysql-utilities-and-global-transaction.html#comments</comments>
		<pubDate>Tue, 10 Apr 2012 15:40:00 +0000</pubDate>
		<dc:creator>Chuck Bell</dc:creator>
				<category><![CDATA[gtid]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Replication]]></category>
		<category><![CDATA[workbench]]></category>

		<guid isPermaLink="false">http://planetmysql.ru/?guid=e866e179ab02f5f828e05b344735922a</guid>
		<description><![CDATA[The new MySQL 5.6 Development Milestone Release (DMR) includes many new enhancements. One of the most impressive is the use of Global Transaction Identifiers (GTIDs) for replication. With GTIDs enabled, administrators no longer need to keep track of binary log files and positions. In a nutshell, GTIDs simplify the setup and maintenance of replication.MySQL Utilities has taken this a step further by providing two new utilities that automate two of the most complex replication administration tasks - switchover and failover. Switchover is changing the role of an active, healthy master to one of its slaves whereas failover is the act of promoting a candidate slave to become the new master. Clearly, switchover is an elective operation and failover is performed when there are issues with the master.The GTID utilities are included in release-1.0.5 of MySQL Utilities. They are included as a plugin for MySQL Workbench or via source download from launchpad (see below). The new GTID utilities are included in Workbench version 5.2.39.Automatic Failover UtilityThe most impressive utility is mysqlfailover, It is an interactive tool used to report replication health, report GTIDs in use, and perform automatic failover. Yes, that’s right - you can setup mysqlfailover to automatically failover to one of a specific set of slaves whenever the master goes offline. It is designed to work with the MySQL 5.6.5 and later versions of the server.As you can see in the screenshot, a list is presented including the host, port, role, state, and replication health for each server in the topology. The utility connects to a single master and its slaves. When used in multiple tier environments, users can run an instance for each master. The utility provides the ability to run a failover check and report health at specific intervals in seconds from five seconds and upTo start the utility, users can specify a list of slaves or provide a default user and password to be used in discovering the slaves connected to the master. Discovery of slaves requires the slaves to report the correct host and port when connecting to the master. Along with the list of slaves, the user can specify a list of servers to be used as candidates for selecting a new master when a failover event is detected.Finally, the user can control how failover occurs with the failover mode. The auto mode tells the utility to failover to the list of candidates first and if none are viable, search the list of slaves for a candidate. The elect mode limits election to the candidate slave list and if none are viable, failover does not occur. The fail mode tells the utility to not perform failover and instead stop execution.Along with these options are four extension points permitting users to interact with the utility during failover. These extension points permit users to specify a script to run at each of the following events.exec-fail-check - execute a script to determine if failover is needed. This replaces the default downed master detection and allows users to perform application-specific detection for failover.exec-before - execute a script before failover is performed. This can be used to tell the application to cease write attempts while a new master is setup.exec-after - execute a script immediately after failover to a new master. This permits users to inform the application that the new master is ready.exec-post-fail - execute a script after failover is complete and all slaves have been attached to the new master. This can be used to inform applications that use read-level scale out that it is safe to resume reads from the slaves.The combination of options to control failover, the option to perform automatic failover, and the ability to inform applications of the failover event are powerful features that enable unattended automatic failover for critical replication-based applications. Replication Administration UtilityThe other utility, mysqlrpladmin, is used to perform switchover and failover operations and more on-demand permitting administrators to execute these tasks with a single command. You can use the command to perform one of the following commands.elect - This command is available to only those servers supporting global transaction identifiers (GTIDs), perform best slave election and report best slave to use in the event a switchover or failover is required. Best slave election is simply the first slave to meet the prerequisites.failover - This command is available to only those servers supporting GTIDs. Conduct failover to the best slave. The command will test each candidate slave listed for the prerequisites. Once a candidate slave is elected, it is made a slave of each of the other slaves thereby collecting any transactions executed on other slaves but not the candidate. In this way, the candidate becomes the most up-to-date slave.gtid - This command is available to only those servers supporting GTIDs. It displays the contents of the GTID variables used to report GTIDs in replication. The command also displays universally unique identifiers (UUIDs) for all servers.health - Display the replication health of the topology.reset - Execute the STOP SLAVE and RESET SLAVE commands on all slaves.start - Execute the START SLAVE command on all slaves.stop - Execute the STOP SLAVE command on all slaves.switchover - Perform slave promotion to a specified candidate slave as designated by the --new-master option. This command is available for both gtid-enabled servers and non-gtid-enabled scenarios.These two utilities raise the bar for replication ease of use making the administrator’s job easier. How Can I Get MySQL Utilities?You can check out these new utilities and the entire suite of utilities by either downloading the source code from launchpad or by downloading and installing MySQL Workbench.You can download MySQL Workbench from:http://www.mysql.com/downloads/workbench/You can also download the latest development source code tree for the MySQL Workbench Utilities from:https://launchpad.net/mysql-utilitiesTo learn more about all of the great new replication features in MySQL 5.6, check out the developer zone article at:http://dev.mysql.com/tech-resources/articles/mysql-5.6-replication.html]]></description>
			<content:encoded><![CDATA[The new MySQL 5.6 Development Milestone Release (DMR) includes many new enhancements. One of the most impressive is the use of Global Transaction Identifiers (GTIDs) for replication. With GTIDs enabled, administrators no longer need to keep track of binary log files and positions. In a nutshell, GTIDs simplify the setup and maintenance of replication.<br /><br />MySQL Utilities has taken this a step further by providing two new utilities that automate two of the most complex replication administration tasks - switchover and failover. Switchover is changing the role of an active, healthy master to one of its slaves whereas failover is the act of promoting a candidate slave to become the new master. Clearly, switchover is an elective operation and failover is performed when there are issues with the master.<br /><br />The GTID utilities are included in release-1.0.5 of MySQL Utilities. They are included as a plugin for MySQL Workbench or via source download from launchpad (see below). The new GTID utilities are included in Workbench version 5.2.39.<br /><br /><b>Automatic Failover Utility</b><br />The most impressive utility is mysqlfailover, It is an interactive tool used to report replication health, report GTIDs in use, and perform automatic failover. Yes, that’s right - you can setup mysqlfailover to automatically failover to one of a specific set of slaves whenever the master goes offline. It is designed to work with the MySQL 5.6.5 and later versions of the server.<br /><br /><img alt="failover-2012-04-3-20-40.png" height="304" src="https://lh6.googleusercontent.com/-68mhZR0DRh4/T4QtTAg5EuI/AAAAAAAAAAk/zikW2O0ipww/failover-2012-04-3-20-40.png" width="512" /><br /><br />As you can see in the screenshot, a list is presented including the host, port, role, state, and replication health for each server in the topology. The utility connects to a single master and its slaves. When used in multiple tier environments, users can run an instance for each master. The utility provides the ability to run a failover check and report health at specific intervals in seconds from five seconds and up<br /><br />To start the utility, users can specify a list of slaves or provide a default user and password to be used in discovering the slaves connected to the master. Discovery of slaves requires the slaves to report the correct host and port when connecting to the master. Along with the list of slaves, the user can specify a list of servers to be used as candidates for selecting a new master when a failover event is detected.<br /><br />Finally, the user can control how failover occurs with the failover mode. The <i>auto</i> mode tells the utility to failover to the list of candidates first and if none are viable, search the list of slaves for a candidate. The <i>elect</i> mode limits election to the candidate slave list and if none are viable, failover does not occur. The fail mode tells the utility to not perform failover and instead stop execution.<br /><br />Along with these options are four extension points permitting users to interact with the utility during failover. These extension points permit users to specify a script to run at each of the following events.<br /><ul><li><b>exec-fail-check </b>- execute a script to determine if failover is needed. This replaces the default downed master detection and allows users to perform application-specific detection for failover.</li><li><b>exec-before</b> - execute a script before failover is performed. This can be used to tell the application to cease write attempts while a new master is setup.</li><li><b>exec-after</b> - execute a script immediately after failover to a new master. This permits users to inform the application that the new master is ready.</li><li><b>exec-post-fail</b> - execute a script after failover is complete and all slaves have been attached to the new master. This can be used to inform applications that use read-level scale out that it is safe to resume reads from the slaves.</li></ul>The combination of options to control failover, the option to perform automatic failover, and the ability to inform applications of the failover event are powerful features that enable unattended automatic failover for critical replication-based applications. <br /><br /><b>Replication Administration Utility</b><br />The other utility, mysqlrpladmin, is used to perform switchover and failover operations and more on-demand permitting administrators to execute these tasks with a single command. You can use the command to perform one of the following commands.<br /><ul><li><b>elect</b> - This command is available to only those servers supporting global transaction identifiers (GTIDs), perform best slave election and report best slave to use in the event a switchover or failover is required. Best slave election is simply the first slave to meet the prerequisites.</li><li><b>failover</b> - This command is available to only those servers supporting GTIDs. Conduct failover to the best slave. The command will test each candidate slave listed for the prerequisites. Once a candidate slave is elected, it is made a slave of each of the other slaves thereby collecting any transactions executed on other slaves but not the candidate. In this way, the candidate becomes the most up-to-date slave.</li><li><b>gtid</b> - This command is available to only those servers supporting GTIDs. It displays the contents of the GTID variables used to report GTIDs in replication. The command also displays universally unique identifiers (UUIDs) for all servers.</li><li><b>health</b> - Display the replication health of the topology.</li><li><b>reset</b> - Execute the STOP SLAVE and RESET SLAVE commands on all slaves.</li><li><b>start</b> - Execute the START SLAVE command on all slaves.</li><li><b>stop</b> - Execute the STOP SLAVE command on all slaves.</li><li><b>switchover</b> - Perform slave promotion to a specified candidate slave as designated by the --new-master option. This command is available for both gtid-enabled servers and non-gtid-enabled scenarios.</li></ul>These two utilities raise the bar for replication ease of use making the administrator’s job easier. <br /><br /><b>How Can I Get MySQL Utilities?</b><br />You can check out these new utilities and the entire suite of utilities by either downloading the source code from launchpad or by downloading and installing MySQL Workbench.<br /><br />You can download MySQL Workbench from:<br /><br /><a href="http://www.mysql.com/downloads/workbench/">http://www.mysql.com/downloads/workbench/</a><br /><br />You can also download the latest development source code tree for the MySQL Workbench Utilities from:<br /><br /><a href="https://launchpad.net/mysql-utilities">https://launchpad.net/mysql-utilities</a><br /><br />To learn more about all of the great new replication features in MySQL 5.6, check out the developer zone article at:<br /><br /><a href="http://dev.mysql.com/tech-resources/articles/mysql-5.6-replication.html">http://dev.mysql.com/tech-resources/articles/mysql-5.6-replication.html</a><div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/2959317805805542041-4419666669436002132?l=drcharlesbell.blogspot.com" alt="" /></div><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=32796&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=32796&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2012/04/10/mysql-utilities-and-global-transaction-identifiers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2011, A great year for MySQL in review&#8230;</title>
		<link>http://feedproxy.google.com/~r/ItsJustAboutCommunication/~3/5Isa-1JnQjc/2011-great-year-for-mysql-in-review.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=2011-a-great-year-for-mysql-in-review</link>
		<comments>http://feedproxy.google.com/~r/ItsJustAboutCommunication/~3/5Isa-1JnQjc/2011-great-year-for-mysql-in-review.html#comments</comments>
		<pubDate>Thu, 29 Dec 2011 12:31:00 +0000</pubDate>
		<dc:creator>Luca Olivari</dc:creator>
				<category><![CDATA[2011]]></category>
		<category><![CDATA[business]]></category>
		<category><![CDATA[Cluster]]></category>
		<category><![CDATA[community]]></category>
		<category><![CDATA[conference]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[enterprise]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[marketing]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[workbench]]></category>

		<guid isPermaLink="false">http://planetmysql.ru/?guid=75602c8a5ac8a5d4b30226af56776c9b</guid>
		<description><![CDATA[I see so many posts on what happened to company X, product Y and dream Z that I couldn't resist the temptation to summarize this great year for MySQL. At the end of 2010, Oracle did an announcement we were all waiting for:&#160;MySQL 5.5 is GA!&#160;Another year has passed since then and it's time to reflect on what has been done.

I know this is a long post. I tried to rewrite it at least 10 times to make it shorter, but I couldn't condense the list. Hence, I wrote a summary in the beginning for those who don't want to read it all.

I believe that 2011 was an exceptional year for MySQL and I really enjoy being part of this team. I wish all of us a lot of success and fun in the years to come!

Summary:
Oracle released many&#160;MySQL 5.6 and&#160;MySQL Cluster 7.2&#160;DMRs accompanied&#160;by new versions of MySQL Enterprise Monitor, MySQL Enterprise Backup,&#160;MySQL Workbench&#160;(and utilities), MySQL Proxy, MySQL Cluster Manager&#160;and&#160;Connectors.

The MySQL team unveiled new products like the MySQL Installer for Windows and Oracle VM Templates for MySQL. Besides, the&#160;MySQL Enterprise offering has been enriched with new commercial extensions.&#160;MySQL can now be leveraged as one of the Oracle data management solutions with new certifications&#160;and the integration with My Oracle Support&#160;increased the business value of customers' investment on Oracle technologies.

Additionally MySQL presented at mayor events across the world and won a few awards.


Long List:
If you're still reading, below you can find an hopefully-extensive list of announcements and blogs (in reverse&#160;chronological&#160;order). I've mainly covered product releases, events and awards. Please let me know if I missed something.

Products:&#160;
Dec 26 - MySQL Workbench 5.2.37 Has Been Released
Dec 20 - MySQL 5.6.4 Development Milestone Now Available!
Dec 02 - MySQL Enterprise Monitor 2.3.8 is now GA!
Nov 28 - MySQL 5.5.18 Debian packaging now available
Oct 10 - New MySQL Enterprise Oracle Certifications
Oct 10 - MySQL Utilities 1.0.3
Oct 07 - MySQL Cluster 7.2 (DMR2): NoSQL, Key/Value, Memcached
Oct 03 - More Early Access Features in the MySQL 5.6.3 Development Milestone!
Oct 03 -&#160;New Development Milestone Releases &#38; Certifications!
Sep 15 - New Commercial Extensions for MySQL Enterprise Editions
Sep 09 - MySQL@Oracle OpenWorld
Sep 06 -&#160;Oracle Enhances MySQL Installer and High Availability for Windows
Sep 06 - Oracle Enhances MySQL Manageability on Windows
Aug 19 - MySQL Proxy 0.8.2 Has Been Released
Aug 01 -&#160;More New MySQL 5.6 Early Access Features
Jul 19 -&#160;MySQL Enterprise Backup 3.6 - New backup streaming, integration with Oracle Secure Backup and other common backup media solutions
Jul 18 - Simpler and Safer Clustering: MySQL Cluster Manager Update
Jul 06 - Announced Oracle VM Templates for MySQL
Apr 12 - MySQL Cluster 7.2 Development Milestone Release - NoSQL with Memcached and 20x Higher JOIN Performance
Apr 11 -&#160;Top Features in MySQL 5.6.2 Development Milestone Release
Apr 11 - Introducing the MySQL Installer for Windows
Mar 15 - Oracle Enhances MySQL Enterprise Edition

Events:
Oct 26 - A lot of MySQL Events in Europe
Oct 12 - MySQL Roadshow in Germany
Sep 16 - OTN MySQL Developer Day in London
Aug 08 - OTN Developer Day: MySQL is Coming to Washington, DC
Jul 14 -&#160;New “Meet The MySQL Experts” Podcast Series
May 13 - Upcoming MySQL Events in Europe
Apr 26 -&#160;OTN Developer Day for MySQL - Santa Clara, CA
Mar 25 - MySQL (and Cluster) at Collaborate and O'Reilly MySQL Conference
Mar 14 -&#160;First Ever MySQL on Windows Online Forum - March 16, 2011

Awards:
Dec 15 -&#160;MySQL Wins Best Open Source Product of 2011 Award
Jun 03 - MySQL Wins the php&#124;architect Impact Award for Data Management
Jan 17 - MySQL Makes the Cover of Oracle Magazine

To all MySQL customers, partners, colleagues, developers, users, advocates or aficionados:&#160;Thank you for this terrific year!&#160;Go MySQL!]]></description>
			<content:encoded><![CDATA[I see so many posts on what happened to company X, product Y and dream Z that I couldn't resist the temptation to summarize this great year for MySQL. At the end of 2010, Oracle did an announcement we were all waiting for:&nbsp;<a href="http://blogs.oracle.com/MySQL/entry/mysql_55_is_ga">MySQL 5.5 is GA</a>!&nbsp;Another year has passed since then and it's time to reflect on what has been done.<br />
<br />
I know this is a long post. I tried to rewrite it at least 10 times to make it shorter, but I couldn't condense the list. Hence, I wrote a summary in the beginning for those who don't want to read it all.<br />
<br />
I believe that 2011 was an exceptional year for MySQL and I really enjoy being part of this team. I wish all of us a lot of success and fun in the years to come!<br />
<br />
<b>Summary:</b><br />
<a href="http://www.mysql.com/common/logos/logo-mysql-110x57.png" imageanchor="1"><img border="0" src="http://www.mysql.com/common/logos/logo-mysql-110x57.png" /></a>Oracle released many&nbsp;<a href="http://dev.mysql.com/tech-resources/articles/whats-new-in-mysql-5.6.html">MySQL 5.6 </a>and&nbsp;<a href="http://dev.mysql.com/tech-resources/articles/mysql-cluster-labs-dev-milestone-release.html">MySQL Cluster 7.2</a>&nbsp;DMRs accompanied&nbsp;by new versions of <a href="http://mysql.com/products/enterprise/monitor.html">MySQL Enterprise Monitor</a>, <a href="http://mysql.com/products/enterprise/backup.html">MySQL Enterprise Backup</a>,&nbsp;<a href="http://www.mysql.com/products/workbench/">MySQL Workbench</a>&nbsp;(and <a href="http://drcharlesbell.blogspot.com/2011/10/mysql-utilities-release-103.html">utilities</a>), <a href="http://dev.mysql.com/downloads/mysql-proxy/">MySQL Proxy</a>, <a href="http://www.mysql.com/products/cluster/mcm/">MySQL Cluster Manager</a>&nbsp;and&nbsp;<a href="http://dev.mysql.com/downloads/connector/">Connectors</a>.<br />
<br />
The MySQL team unveiled new products like the <a href="http://dev.mysql.com/tech-resources/articles/mysql-installer-for-windows.html">MySQL Installer</a> for Windows and <a href="http://www.oracle.com/us/corporate/press/421994">Oracle VM Templates for MySQL</a>. Besides, the&nbsp;<a href="http://www.mysql.com/products/enterprise/">MySQL Enterprise</a> offering has been enriched with new <a href="http://blogs.oracle.com/MySQL/entry/new_commercial_extensions_for_mysql">commercial extensions</a>.&nbsp;MySQL can now be leveraged as one of the Oracle data management solutions with new <a href="http://blogs.oracle.com/MySQL/entry/new_mysql_enterprise_oracle_certifications">certifications</a>&nbsp;and the integration with <a href="http://www.oracle.com/us/support/mos-mysql-297243.html">My Oracle Support</a>&nbsp;increased the business value of customers' investment on Oracle technologies.<br />
<br />
Additionally MySQL presented at mayor <a href="http://mysql.com/news-and-events/events/">events </a>across the world and won a few <a href="http://www.mysql.com/why-mysql/awards/">awards</a>.<br />
<br />
<a name='more'></a><br />
<b>Long List:</b><br />
If you're still reading, below you can find an hopefully-extensive list of announcements and blogs (in reverse&nbsp;chronological&nbsp;order). I've mainly covered product releases, events and awards. Please let me know if I missed something.<br />
<br />
<b>Products:&nbsp;</b><br />
Dec 26 - <a href="http://blogs.oracle.com/mysqlworkbench/entry/mysql_workbench_5_2_37">MySQL Workbench 5.2.37 Has Been Released</a><br />
Dec 20 - <a href="http://blogs.oracle.com/MySQL/entry/mysql_5_6_4_development">MySQL 5.6.4 Development Milestone Now Available!</a><br />
Dec 02 - <a href="http://blogs.oracle.com/mysqlenterprise/entry/mysql_enterprise_monitor_2_34">MySQL Enterprise Monitor 2.3.8 is now GA!</a><br />
Nov 28 - <a href="http://blogs.oracle.com/MySQL/entry/mysql_5_5_18_debian">MySQL 5.5.18 Debian packaging now available</a><br />
Oct 10 - <a href="http://blogs.oracle.com/MySQL/entry/new_mysql_enterprise_oracle_certifications">New MySQL Enterprise Oracle Certifications</a><br />
Oct 10 - <a href="http://drcharlesbell.blogspot.com/2011/10/mysql-utilities-release-103.html">MySQL Utilities 1.0.3</a><br />
Oct 07 - <a href="http://blogs.oracle.com/MySQL/entry/mysql_cluster_7_2_dmr2">MySQL Cluster 7.2 (DMR2): NoSQL, Key/Value, Memcached</a><br />
Oct 03 - <a href="http://blogs.oracle.com/MySQL/entry/mysql_cluster_7_2_dmr2">More Early Access Features in the MySQL 5.6.3 Development Milestone!</a><br />
Oct 03 -&nbsp;<a href="http://blogs.oracle.com/MySQL/entry/new_development_milestone_releases_certifications">New Development Milestone Releases &amp; Certifications!</a><br />
Sep 15 - <a href="http://blogs.oracle.com/MySQL/entry/new_commercial_extensions_for_mysql">New Commercial Extensions for MySQL Enterprise Editions</a><br />
Sep 09 - <a href="http://blogs.oracle.com/MySQL/entry/mysql_oracle_openworld">MySQL@Oracle OpenWorld</a><br />
Sep 06 -&nbsp;<a href="http://www.oracle.com/us/corporate/press/485067">Oracle Enhances MySQL Installer and High Availability for Windows</a><br />
Sep 06 - <a href="http://blogs.oracle.com/MySQL/entry/oracle_enhances_mysql_manageability_on">Oracle Enhances MySQL Manageability on Windows</a><br />
Aug 19 - <a href="http://blogs.oracle.com/mysqlenterprise/entry/mysql_proxy_0_8_2">MySQL Proxy 0.8.2 Has Been Released</a><br />
Aug 01 -&nbsp;<a href="http://blogs.oracle.com/MySQL/entry/more_new_mysql_5_6">More New MySQL 5.6 Early Access Features</a><br />
Jul 19 -&nbsp;<a href="http://blogs.oracle.com/MySQL/entry/mysql_enterprise_backup_3_6">MySQL Enterprise Backup 3.6 - New backup streaming, integration with Oracle Secure Backup and other common backup media solutions</a><br />
Jul 18 - <a href="http://blogs.oracle.com/MySQL/entry/simpler_and_safer_clustering_mysql">Simpler and Safer Clustering: MySQL Cluster Manager Update</a><br />
Jul 06 - <a href="http://blogs.oracle.com/MySQL/entry/virtualizing_mysql_1_click_kick">Announced Oracle VM Templates for MySQL</a><br />
Apr 12 - <a href="http://blogs.oracle.com/MySQL/entry/mysql_cluster_72_development_milestone_release_-_nosql_with_memcached_and_20x_higher_join_performanc">MySQL Cluster 7.2 Development Milestone Release - NoSQL with Memcached and 20x Higher JOIN Performance</a><br />
Apr 11 -&nbsp;<a href="http://blogs.oracle.com/MySQL/entry/top_features_in_mysql_562_development_milestone_release">Top Features in MySQL 5.6.2 Development Milestone Release</a><br />
Apr 11 - <a href="http://dev.mysql.com/tech-resources/articles/mysql-installer-for-windows.html">Introducing the MySQL Installer for Windows</a><br />
Mar 15 - <a href="http://www.oracle.com/us/corporate/press/339030">Oracle Enhances MySQL Enterprise Edition</a><br />
<br />
<b>Events:</b><br />
Oct 26 - <a href="http://blogs.oracle.com/MySQL/entry/and_more_mysql_events_in">A lot of MySQL Events in Europe</a><br />
Oct 12 - <a href="http://blogs.oracle.com/MySQL/entry/mysql_roadshow_in_germany">MySQL Roadshow in Germany</a><br />
Sep 16 - <a href="http://blogs.oracle.com/MySQL/entry/otn_mysql_developer_day_in">OTN MySQL Developer Day in London</a><br />
Aug 08 - <a href="http://blogs.oracle.com/MySQL/entry/otn_developer_day_mysql_is">OTN Developer Day: MySQL is Coming to Washington, DC</a><br />
Jul 14 -&nbsp;<a href="http://blogs.oracle.com/MySQL/entry/new_meet_the_mysql_experts">New “Meet The MySQL Experts” Podcast Series</a><br />
May 13 - <a href="http://blogs.oracle.com/MySQL/entry/upcoming_mysql_events_in_europe">Upcoming MySQL Events in Europe</a><br />
Apr 26 -&nbsp;<a href="http://blogs.oracle.com/MySQL/entry/otn_developer_day_for_mysql_-_santa_clara_ca">OTN Developer Day for MySQL - Santa Clara, CA</a><br />
Mar 25 - <a href="http://blogs.oracle.com/MySQL/entry/mysql_cluster_on_the_road_oreilly_mysql_and_collaborate_conferences">MySQL (and Cluster) at Collaborate and O'Reilly MySQL Conference</a><br />
Mar 14 -&nbsp;<a href="http://blogs.oracle.com/MySQL/entry/first_ever_mysql_on_windows_online_forum_-_march_16_2011">First Ever MySQL on Windows Online Forum - March 16, 2011</a><br />
<br />
<b>Awards:</b><br />
Dec 15 -&nbsp;<a href="http://mysql%20wins%20best%20open%20source%20product%20of%202011%20award/">MySQL Wins Best Open Source Product of 2011 Award</a><br />
Jun 03 - <a href="http://blogs.oracle.com/MySQL/entry/mysql_wins_the_php_architect">MySQL Wins the php|architect Impact Award for Data Management</a><br />
Jan 17 - <a href="http://blogs.oracle.com/MySQL/entry/mysql_makes_the_cover_of_oracle_magazine">MySQL Makes the Cover of Oracle Magazine</a><br />
<br />
To all MySQL customers, partners, colleagues, developers, users, advocates or aficionados:&nbsp;<b>Thank you for this terrific year!&nbsp;Go MySQL!</b><div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/8877901999053801110-3078837993853253512?l=justaboutcommunication.blogspot.com" alt="" /></div>
<p><a href="http://feedads.g.doubleclick.net/~a/PPQjtrF5oz_YcSxbtf8joobtFNY/0/da"><img src="http://feedads.g.doubleclick.net/~a/PPQjtrF5oz_YcSxbtf8joobtFNY/0/di" border="0" ismap="true"></img></a><br/>
<a href="http://feedads.g.doubleclick.net/~a/PPQjtrF5oz_YcSxbtf8joobtFNY/1/da"><img src="http://feedads.g.doubleclick.net/~a/PPQjtrF5oz_YcSxbtf8joobtFNY/1/di" border="0" ismap="true"></img></a></p><div>
<a href="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?a=5Isa-1JnQjc:mNvShHfcYZ0:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?a=5Isa-1JnQjc:mNvShHfcYZ0:4cEx4HpKnUU"><img src="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?i=5Isa-1JnQjc:mNvShHfcYZ0:4cEx4HpKnUU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?a=5Isa-1JnQjc:mNvShHfcYZ0:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?i=5Isa-1JnQjc:mNvShHfcYZ0:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?a=5Isa-1JnQjc:mNvShHfcYZ0:7Q72WNTAKBA"><img src="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?d=7Q72WNTAKBA" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?a=5Isa-1JnQjc:mNvShHfcYZ0:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?i=5Isa-1JnQjc:mNvShHfcYZ0:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?a=5Isa-1JnQjc:mNvShHfcYZ0:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?d=qj6IDK7rITs" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?a=5Isa-1JnQjc:mNvShHfcYZ0:l6gmwiTKsz0"><img src="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?d=l6gmwiTKsz0" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?a=5Isa-1JnQjc:mNvShHfcYZ0:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?i=5Isa-1JnQjc:mNvShHfcYZ0:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?a=5Isa-1JnQjc:mNvShHfcYZ0:TzevzKxY174"><img src="http://feeds.feedburner.com/~ff/ItsJustAboutCommunication?d=TzevzKxY174" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/ItsJustAboutCommunication/~4/5Isa-1JnQjc" height="1" width="1" /><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31445&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31445&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2011/12/29/2011-a-great-year-for-mysql-in-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Workbench 5.2.37 GA Released</title>
		<link>http://blogs.oracle.com/mysqlworkbench/entry/mysql_workbench_5_2_37?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=mysql-workbench-5-2-37-ga-released</link>
		<comments>http://blogs.oracle.com/mysqlworkbench/entry/mysql_workbench_5_2_37#comments</comments>
		<pubDate>Tue, 27 Dec 2011 03:55:40 +0000</pubDate>
		<dc:creator>Michael Zinner</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[workbench]]></category>

		<guid isPermaLink="false">http://blogs.oracle.com/mysqlworkbench/entry/mysql_workbench_5_2_37</guid>
		<description><![CDATA[The MySQL Developer Tools team is announcing the next maintenance release of it’s flagship product, MySQL Workbench, version 5.2.37.&#160; 
   
    This&#160;release contains 21 bug fixes, including a fix for a slowdown on loading of schema objects in the SQL Editor.&#160; 
     
    MySQL Workbench 5.2 GA 
     
     • Data Modeling 
     • Query (replaces the old MySQL Query Browser) 
     • Administration (replaces the old MySQL Administrator) 
    Please get your copy from our Download site. Sources and binary packages are available for several platforms, including Windows, Mac OS X and Linux. 
     
    http://dev.mysql.com/downloads/workbench/ 
     
    Workbench Documentation can be found here. 
     
    http://dev.mysql.com/doc/workbench/en/index.html 
     
    In addition to the new Query/SQL Development and Administration modules, version 5.2 features improved stability and performance – especially in Windows,&#160;where OpenGL support has been enhanced and the UI was optimized to offer better responsiveness. This release also includes improvements to the scripting&#160;capabilities of the SQL Editor. You can read more about it in 
     
    http://wb.mysql.com/workbench/doc/ 
     
    For a detailed list of resolved issues, see the change log. 
     
    http://dev.mysql.com/doc/workbench/en/wb-change-history.html 
     
    If you need any additional info or help please get in touch with us. 
     
    Post in our forums, leave comments on our blog pages or if you want to talk to us directly you can visit us on our IRC channel #workbench on irc.freenode.net. 
     
    - The MySQL Workbench Team 
     
    Alfredo Kojima]]></description>
			<content:encoded><![CDATA[<p><span>The MySQL Developer Tools team is announcing the next maintenance release of it’s flagship product, <a href="http://www.mysql.com/products/workbench/">MySQL Workbench</a>, version 5.2.37.&nbsp;</span></p> 
  <div> 
    <p>This&nbsp;release contains 21 bug fixes, including a fix for a slowdown on loading of schema objects in the SQL Editor.&nbsp;</p> 
    <p><br /></p> 
    <p><h2>MySQL Workbench 5.2 GA</h2></p> 
    <p><br /></p> 
    <p><span> </span>• Data Modeling</p> 
    <p><span> </span>• Query (replaces the old MySQL Query Browser)</p> 
    <p><span> </span>• Administration (replaces the old MySQL Administrator)</p> 
    <p>Please get your copy from our Download site. Sources and binary packages are available for several platforms, including Windows, Mac OS X and Linux.</p> 
    <p><br /></p> 
    <p><a href="http://dev.mysql.com/downloads/workbench/">http://dev.mysql.com/downloads/workbench/</a></p> 
    <p><br /></p> 
    <p>Workbench Documentation can be found here.</p> 
    <p><br /></p> 
    <p><a href="http://dev.mysql.com/doc/workbench/en/index.html">http://dev.mysql.com/doc/workbench/en/index.html</a></p> 
    <p><br /></p> 
    <p>In addition to the new Query/SQL Development and Administration modules, version 5.2 features improved stability and performance – especially in Windows,&nbsp;where OpenGL support has been enhanced and the UI was optimized to offer better responsiveness. This release also includes improvements to the scripting&nbsp;capabilities of the SQL Editor. You can read more about it in</p> 
    <p><br /></p> 
    <p><a href="http://wb.mysql.com/workbench/doc/">http://wb.mysql.com/workbench/doc/</a></p> 
    <p><br /></p> 
    <p>For a detailed list of resolved issues, see the change log.</p> 
    <p><br /></p> 
    <p><a href="http://dev.mysql.com/doc/workbench/en/wb-change-history.html">http://dev.mysql.com/doc/workbench/en/wb-change-history.html</a></p> 
    <p><br /></p> 
    <p>If you need any additional info or help please get in touch with us.</p> 
    <p><br /></p> 
    <p>Post in our <a href="http://forums.mysql.com/index.php?151">forums</a>, leave comments on our blog pages or if you want to talk to us directly you can visit us on our IRC channel #workbench on irc.freenode.net.</p> 
    <p><br /></p> 
    <p>- The MySQL Workbench Team</p> 
    <p><br /></p> 
    <p>Alfredo Kojima</p> 
  </div> 
  <p> </p><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31483&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=31483&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2011/12/27/mysql-workbench-5-2-37-ga-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Workbench Scripts</title>
		<link>http://sqlhjalp.blogspot.com/2011/09/workbench-scripts.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=workbench-scripts</link>
		<comments>http://sqlhjalp.blogspot.com/2011/09/workbench-scripts.html#comments</comments>
		<pubDate>Fri, 23 Sep 2011 21:45:24 +0000</pubDate>
		<dc:creator>Keith Larson</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[workbench]]></category>

		<guid isPermaLink="false">http://planetmysql.ru/?guid=c67b48c451fc64c388088cef09b37ee7</guid>
		<description><![CDATA[A was checking out the new Workbench today after I saw this blog post http://wb.mysql.com/?p=1169It all worked great and very easy.&#160; Nice clean code that helps out the PHP Developer.example: $host="localhost";$port=3306;$socket="";$user="";$password="";$dbname="";$con = new mysqli($host, $user, $password, $dbname, $port, $socket)&#160;&#160;&#160; or die ('Could not connect to the database server' . mysqli_connect_error());//$con-&#62;close();$query = "SELECT * FROM exampledb";if ($stmt = $con-&#62;prepare($query)) {&#160;&#160;&#160; $stmt-&#62;execute();&#160;&#160;&#160; $stmt-&#62;bind_result($field1, $field2);&#160;&#160;&#160; while ($stmt-&#62;fetch()) {&#160;&#160;&#160;&#160;&#160;&#160;&#160; //printf("%s, %s\n", $field1, $field2);&#160;&#160;&#160; }&#160;&#160;&#160; $stmt-&#62;close();}While this is a simple example it is a fantastic way for new developers to get started and learn how things are done.A DBA can easily write a complex query and hand over PHP code to the developer. Nice work!The ability to then write your own plugins really opens it up for some advanced developers.&#160; This is a step in the right direction and supports working together between DBA and developer.]]></description>
			<content:encoded><![CDATA[A was checking out the new Workbench today after I saw this blog post <a href="http://wb.mysql.com/?p=1169">http://wb.mysql.com/?p=1169</a><br /><br />It all worked great and very easy.&nbsp; Nice clean code that helps out the PHP Developer.<br />example: <br />$host="localhost";<br />$port=3306;<br />$socket="";<br />$user="";<br />$password="";<br />$dbname="";<br /><br />$con = new mysqli($host, $user, $password, $dbname, $port, $socket)<br />&nbsp;&nbsp;&nbsp; or die ('Could not connect to the database server' . mysqli_connect_error());<br /><br />//$con-&gt;close();<br /><br /><br />$query = "SELECT * FROM exampledb";<br /><br /><br />if ($stmt = $con-&gt;prepare($query)) {<br />&nbsp;&nbsp;&nbsp; $stmt-&gt;execute();<br />&nbsp;&nbsp;&nbsp; $stmt-&gt;bind_result($field1, $field2);<br />&nbsp;&nbsp;&nbsp; while ($stmt-&gt;fetch()) {<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //printf("%s, %s\n", $field1, $field2);<br />&nbsp;&nbsp;&nbsp; }<br />&nbsp;&nbsp;&nbsp; $stmt-&gt;close();<br />}<br /><br />While this is a simple example it is a fantastic way for new developers to get started and learn how things are done.<br /><br />A DBA can easily write a complex query and hand over PHP code to the developer. Nice work!<br /><br />The ability to then write your own plugins really opens it up for some advanced developers.&nbsp; <br /><br />This is a step in the right direction and supports working together between DBA and developer.<div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/3812360659149323517-1043687768419923107?l=sqlhjalp.blogspot.com" alt="" /></div><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=30071&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=30071&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2011/09/24/workbench-scripts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Show your support for MySQL Workbench !</title>
		<link>http://sqlhjalp.blogspot.com/2011/08/show-your-support-for-mysql-workbench.html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=show-your-support-for-mysql-workbench</link>
		<comments>http://sqlhjalp.blogspot.com/2011/08/show-your-support-for-mysql-workbench.html#comments</comments>
		<pubDate>Wed, 17 Aug 2011 18:33:24 +0000</pubDate>
		<dc:creator>Keith Larson</dc:creator>
				<category><![CDATA[mysql]]></category>
		<category><![CDATA[workbench]]></category>

		<guid isPermaLink="false">http://planetmysql.ru/?guid=f5d7f2e7f9554f9f9ced93614b07e1c1</guid>
		<description><![CDATA[The 2011 DevProConnections CommunityChoice Awards has two categories that include nominations for MySQL Workbench !  You can support MySQL Workbench with your vote. The two categories that include Workbench are, “Component Set” (page 1 # 7) and  “IDE” (page 2 #14).  The survey is available here and information about workbench is always available here: http://www.mysql.com/products/workbench/]]></description>
			<content:encoded><![CDATA[<br /><div>The <a href="http://www.surveymonkey.com/s/devproconnections-communitychoice2011-finalvoting">2011 DevProConnections CommunityChoice Awards</a> has two categories that include nominations for MySQL Workbench !  </div><div><br /></div><div>You can support MySQL Workbench with your vote. The two categories that include Workbench are, “Component Set” (page 1 # 7) and  “IDE” (page 2 #14).  </div><div><br /></div><div>The survey is available <a href="http://www.surveymonkey.com/s/devproconnections-communitychoice2011-finalvoting">here</a> and information about workbench is always available here: <a href="http://www.mysql.com/products/workbench/">http://www.mysql.com/products/workbench/ </a></div><div><img width="1" height="1" src="https://blogger.googleusercontent.com/tracker/3812360659149323517-130215662032079509?l=sqlhjalp.blogspot.com" alt="" /></div><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=29729&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=29729&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2011/08/17/show-your-support-for-mysql-workbench/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tech Writer Wanted for MySQL Workbench &amp; Connectors</title>
		<link>http://blogs.oracle.com/mysqlf/entry/tech_writer_wanted_for_mysql?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tech-writer-wanted-for-mysql-workbench-connectors</link>
		<comments>http://blogs.oracle.com/mysqlf/entry/tech_writer_wanted_for_mysql#comments</comments>
		<pubDate>Wed, 25 May 2011 08:12:58 +0000</pubDate>
		<dc:creator>Stefan Hinz</dc:creator>
				<category><![CDATA[connectors]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[workbench]]></category>

		<guid isPermaLink="false">http://blogs.oracle.com/mysqlf/entry/tech_writer_wanted_for_mysql</guid>
		<description><![CDATA[The MySQL Documentation Team is looking for a senior technical writer. Main areas to cover are MySQL Workbench and MySQL Connectors. The position is for EMEA.
  Candidates should be prepared to work intensively with our developers 
and support organization when writing documentation. Being a distributed
 team,&#160; we meet mostly on IRC and coordinate our work through email and 
versioning systems such as Subversion. The base format we're using is 
DocBook XML, and we're not just writing but also processing and 
publishing all our documentation ourselves.
  This means you should be ready to use &#34;non-wysiwyg&#34; text editors, have a clue about XML and XSL, and be prepared to communicate over the Internet most of the time. Naturally, you should have some experience documenting database software. We're striving for high quality (good and understandable writing, accuracy, completeness, attention to details, timeliness) — people are actually reading the documentation we provide; our online viewable formats get millions of page views every month.
  If you think you qualify, drop me a mail, and let me know what time would be best to get together on the phone.]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://dev.mysql.com/doc/index-about.html" title="MySQL documentation team: About">MySQL Documentation Team</a> is <a href="http://emeajobs.oracle.com/pls/webdep_www/wd_portal.show_job?p_web_site_id=582&amp;p_web_page_id=85135" title="Job description">looking for a senior technical writer</a>. Main areas to cover are <a href="http://dev.mysql.com/doc/index-gui.html">MySQL Workbench</a> and <a href="http://dev.mysql.com/doc/refman/5.5/en/connectors-apis.html">MySQL Connectors</a>. The position is for EMEA.</p>
  <p>Candidates should be prepared to work intensively with our developers 
and support organization when writing documentation. Being a distributed
 team,&nbsp; we meet mostly on IRC and coordinate our work through email and 
versioning systems such as Subversion. The base format we're using is 
DocBook XML, and we're not just writing but also processing and 
publishing all our documentation ourselves.</p>
  <p>This means you should be ready to use &quot;non-wysiwyg&quot; text editors, have a clue about XML and XSL, and be prepared to communicate over the Internet most of the time. Naturally, you should have some experience documenting database software. We're striving for high quality (good and understandable writing, accuracy, completeness, attention to details, timeliness) — people are actually reading the documentation we provide; our online viewable formats get millions of page views every month.</p>
  <p>If you think you qualify, <a href="mailto:stefan.hinz@oracle.com">drop me a mail</a>, and let me know what time would be best to get together on the phone.<br /></p><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=28982&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=28982&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2011/05/25/tech-writer-wanted-for-mysql-workbench-connectors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Tech Writer Wanted for MySQL Workbench &amp; Connectors</title>
		<link>http://blogs.oracle.com/mysqlf/entry/tech_writer_wanted_for_mysql?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=tech-writer-wanted-for-mysql-workbench-connectors</link>
		<comments>http://blogs.oracle.com/mysqlf/entry/tech_writer_wanted_for_mysql#comments</comments>
		<pubDate>Wed, 25 May 2011 08:12:58 +0000</pubDate>
		<dc:creator>Stefan Hinz</dc:creator>
				<category><![CDATA[connectors]]></category>
		<category><![CDATA[docs]]></category>
		<category><![CDATA[job]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[sun]]></category>
		<category><![CDATA[workbench]]></category>

		<guid isPermaLink="false">http://blogs.oracle.com/mysqlf/entry/tech_writer_wanted_for_mysql</guid>
		<description><![CDATA[The MySQL Documentation Team is looking for a senior technical writer. Main areas to cover are MySQL Workbench and MySQL Connectors. The position is for EMEA.
  Candidates should be prepared to work intensively with our developers 
and support organization when writing documentation. Being a distributed
 team,&#160; we meet mostly on IRC and coordinate our work through email and 
versioning systems such as Subversion. The base format we're using is 
DocBook XML, and we're not just writing but also processing and 
publishing all our documentation ourselves.
  This means you should be ready to use &#34;non-wysiwyg&#34; text editors, have a clue about XML and XSL, and be prepared to communicate over the Internet most of the time. Naturally, you should have some experience documenting database software. We're striving for high quality (good and understandable writing, accuracy, completeness, attention to details, timeliness) — people are actually reading the documentation we provide; our online viewable formats get millions of page views every month.
  If you think you qualify, drop me a mail, and let me know what time would be best to get together on the phone.]]></description>
			<content:encoded><![CDATA[<p>The <a href="http://dev.mysql.com/doc/index-about.html" title="MySQL documentation team: About">MySQL Documentation Team</a> is <a href="http://emeajobs.oracle.com/pls/webdep_www/wd_portal.show_job?p_web_site_id=582&amp;p_web_page_id=85135" title="Job description">looking for a senior technical writer</a>. Main areas to cover are <a href="http://dev.mysql.com/doc/index-gui.html">MySQL Workbench</a> and <a href="http://dev.mysql.com/doc/refman/5.5/en/connectors-apis.html">MySQL Connectors</a>. The position is for EMEA.</p>
  <p>Candidates should be prepared to work intensively with our developers 
and support organization when writing documentation. Being a distributed
 team,&nbsp; we meet mostly on IRC and coordinate our work through email and 
versioning systems such as Subversion. The base format we're using is 
DocBook XML, and we're not just writing but also processing and 
publishing all our documentation ourselves.</p>
  <p>This means you should be ready to use &quot;non-wysiwyg&quot; text editors, have a clue about XML and XSL, and be prepared to communicate over the Internet most of the time. Naturally, you should have some experience documenting database software. We're striving for high quality (good and understandable writing, accuracy, completeness, attention to details, timeliness) — people are actually reading the documentation we provide; our online viewable formats get millions of page views every month.</p>
  <p>If you think you qualify, <a href="mailto:stefan.hinz@oracle.com">drop me a mail</a>, and let me know what time would be best to get together on the phone.<br /></p><br/>PlanetMySQL Voting:
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=28982&vote=1&apivote=1">Vote UP</a> /
	 <a href="http://planet.mysql.com/entry/vote/?entry_id=28982&vote=-1&apivote=1">Vote DOWN</a>]]></content:encoded>
			<wfw:commentRss>http://planetmysql.ru/2011/05/25/tech-writer-wanted-for-mysql-workbench-connectors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

