The MySQL@Oracle announced 5.7.3 development milestone release,
now available for download at dev.mysql.com. You can find the
full list of changes and bug fixes in the 5.7.3 Release Notes. One of the changes which
went in this milestone release was MAKE –REPLICATION-* FILTER SETTINGS DYNAMIC.
With this work the slave options –replicate-* can be changed
dynamically through the new command CHANGE REPLICATION FILTER.
These new options allow slave replication filters to be changed
while the server is running, without requiring a server stop and
restart.
This blog is intended to explain the design decision of choosing
a “new command” over “extending the existing SET command”.
Alternatives:
…
Dear MySQL users,
MySQL Connector/Net 6.8.3, a new version of the all-managed .NET driver for MySQL has been released. This is a GA release for 6.8.x and can be used for production environments.
It is appropriate for use with MySQL server versions 5.0-5.6
It is now available in source and binary form from http://dev.mysql.com/downloads/connector/net/#downloads and mirror sites (note that not all mirror sites may be up to date at this point-if you can't find this version on some mirror, please try again later or choose another download site.)
The 6.8.3 version of MySQL Connector/Net has support for Entity Framework 6.0
The release is available to download at http://dev.mysql.com/downloads/connector/net/#downloads
Enjoy and …
[Read more]There is an upcoming meeting of the Triangle Linux Users Group in Raleigh. The topic will be MySQL 5.6, presented by Alexander Rubin from Percona.
http://trilug.org/2014-01-09/mysql
Topic: What is new in MySQL 5.6
Presenter: Alexander Rubin
When: Thursday, 9th January 2014, 7pm (pizza from 6.45pm)
Where: NC State Engineering Building II Room TBA, Centennial
Campus
Parking: The parking decks and Oval Drive street parking are free
after 5pm
This week we discuss setting up Percona Replication Manager. Ear Candy is playing with Unicode to make seasonal pictures and At the Movies is about systems performance with lots of MySQL examples.
Events
DB Hangops -
every other Wednesay at noon Pacific time
FOSDEM 2014
- Sat February 1 - Sun February 2 in Brussels, Belgium.
Upcoming MySQL events
The call for papers for OSCon 2014 is open until Thursday, January 30th
MySQL uses internal temporary tables to execute some queries. Usually the tables are stored in memory and on disk if some conditions are met :
Some conditions prevent the use of an in-memory temporary table, in which case the server uses an on-disk table instead:
-
Presence of any string column in a
GROUP BY
orDISTINCT
clause larger than 512 bytes -
Presence of any string column with a maximum length larger than 512 (bytes for binary strings, characters for nonbinary strings) in the …
Percona Server version 5.5.35-33.0
Percona is glad to announce the release of Percona Server 5.5.35-33.0 on December 20th, 2013 (Downloads are available here and from the Percona Software Repositories). Based on MySQL 5.5.35, including all the bug fixes in it, Percona Server 5.5.35-33.0 is now the current stable release in the 5.5 series. All of Percona‘s software is open-source and free, all the details of the …
[Read more]It has been a busy week for the Pythonic MySQL Team at Oracle: MySQL Utilities 1.3.6 and a brand new Utilities 1.4.1 Alpha has been release which includes Fabric. Yes, and of course, the one binding them all: Connector/Python v1.1.4 has been released as GA (General Available). Check out the Change History if you want to keep up with what is being added and changed.
New features found in v1.1:
- Important: Connector/Python will not work with Python v2.4 or v2.5. Yes, I consider this a feature.
- Connector/Python comes with it’s own …
Percona is glad to announce the release of Percona Toolkit 2.2.6 on December 20th, 2013 (Downloads are available here and from the Percona Software Repositories). This release is the current GA (Generally Available) stable release in the 2.2 series. This release has 16 bug fixes and a few new features. One bug fix is very important, so 2.2 users are strongly encouraged to upgrade:
Fixed bug 1223458: pt-table-sync deletes child …
[Read more]
The MySQL Utilities Team is pleased to announce the latest GA
release of MySQL Utilities. This release includes a number of
improvements for usability, stability, and a few enhancements. We
have also included a performance upgrade for exporting,
importing, and copying databases.
Improvements
The following highlights a few of the more significant
improvements.
* mysqldbexport, mysqldbimport, and mysqldbcopy have
multiprocessing support that allows for much improved
performance
* mysqlfrm can now generate a .frm file with storage engine
substitution
* Mac OS X packages added!
* mysqlserverinfo now includes the log files (error, general,
slow)
* mysqlprocgrep can now search and kill processes by id
* mysqlmetagrep can now search the body of routines with the new
--body option
* all utilities report license type with --version and
--help
* all utilities have the new …
MySQL 5.6 introduced the ability to expire passwords. Many work
environments have rules where it is mandatory to change passwords
on a regular basis. It is easy to expire a single account with a
ALTER USER 'dave'@'localhost' PASSWWORD EXPIRE;
command.
The mysql.user table
The mysql.user table now has a PASSWORD_EXPIRED column. A user attempting to login with an expired account using a client that supports, they will be prompted to change their password.
An example of being forced into sandbox mode and changing the password. Note that user does not have SUPER or other admin level privs to change passwords.
SET PASSWORD does not check to see if you are reusing your old …
[Read more]