When you have a MySQL server in production, backups are necessary to protect your data against any problem that may occur with your server. To make the backup and to restore the data, Exporting to a dump file The operation of export is also called dumping. To carry out the exporting, use the command msyqldump […]
Due to the growing popularity of Connector/Arduino, the moderator
of MySQL Forums has created a forum for us to meet up and discuss
the connector. Yippie!
http://forums.mysql.com/list.php?175
While the forum has been started very recently, I expect it will
grow quickly as people discover the connector for the first time
and experienced users find new and interesting ways to use it. I
hope to moderate the new forum periodically to answer questions
and respond to posts. See you there!
Note: you need an account to write to the forum. Click on
"register" in the upper right hand corner of the forum page to
create an account if you do not already have one.
Tuesday, 22 October 2013Author: marcsherwood
We are excited to share that Intel Capital has lead a $20 million round of funding in SkySQL. The funding will be used to invest in the MariaDB open source project, to better support the rapidly growing community and user base worldwide, and to develop commercial solutions for scaling the MariaDB database server. More details here...
In the very early days of Percona Vadim wrote very nice post about GROUP_CONCAT.
But I want to show you a bit more about it.
When is GROUP_CONCAT useful? Usually while working with Support customers I recommend it when you have aggregation of many-to-many info. It makes the view simpler and more beautiful and it doesn’t need much effort to make it work.
Some simple examples:
This is a test table:
CREATE TABLE `group_c` ( `parent_id` int(11) DEFAULT NULL, `child_id` int(11) DEFAULT NULL ) ENGINE=InnoDB; INSERT INTO …[Read more]
Giuseppe Maxia had a great blog post recently about the potential problems facing the Percona Server and MariaDB projects. I’ve been a big fan of both Percona Server and MariaDB for years. I switched to MariaDB a little over a year ago, after using Percona for several years. For me, the primary driver was the [...]
My blog post about MPS on the Facebook
Engineering blog has been published today!
This is a pretty amazing piece of automation that we've been
building at Facebook for the past few years, and I'm excited to
be able to speak about it in public.
Update: It is now also available at the new Facebook Code site.
Post by Facebook
Engineering.
Ten years ago, MySQL got a "bug report" about trouble with RLIKE. It got marked "won't fix" because MySQL used a regular-expression library that couldn't handle non-ASCII characters reliably. Over time there were multiple similar or duplicate bug reports but the only result was a note in the MySQL manual saying, in effect, "tough luck". Until now.
Actually the fix is in a pre-release of the bzr branch for MariaDB 10.0.5, and I can't predict that the MySQL folks will copy it, but it looks good to me, and I clap for the original coders who made the "Perl Compatible Regular Expressions" library, the "Google Summer of Code" folks who …
[Read more]Last week I was a guest speaker at the second annual MySQL/NoSQL/Cloud Conference held in Buenos Aires, Argentina. Thanks to Santiago Lertora from Binlogic who has taken on the responsibility of organizing a event for the MySQL community in South America.
My presentations slides for my 3 talks.
- Monitoring MySQL/NoSQL and the Cloud with New Relic
- Backup and Recovery Procedures
- New MySQL 5.6 Features
While the MySQL community and …
[Read more]This week I am presenting at the All Things Open conference (be sure to drop by the booth for some MySQl stickers!), the next is Strata in NYC, and then the North Texas MySQL Users Group on November 4th.
Recently I found myself talking to a company that was a big user of MySQL, but just hadn’t followed all of the latest developments so closely. When the conversation went to availability I was actually not as prepared as I would have liked, and forgot about some of the (quite large) improvements that have been made to MySQL recently.
So here is me trying to write it all down for the next time I’m in the same situation. Note that I am using the definition of Continuous availability, which means any service disruptions that impact the business not just reduced redundancy.
#1 - InnoDB as default
When: MySQL 5.5
Why:
- Row locks instead of table-locks means that there is less contention and sudden stalls as applications become more loaded (i.e. performance degrades much better). …