(Shlomi Noach) Today I have released common_schema, a utility schema for MySQL which includes many views and functions, and is aimed to be installed on any MySQL server.
Tag: Open Source
Did you know ‘optimize table’ can reset your auto-increment ?
(Cédric Peintre) I’ve used the OPTIMIZE command for a long time, in particular for disk space problems.
Backup and Restore a MySQL Database
This is a beginner tutorial that will show you how to perform MySQL backups and restoration.
How to change innodb_log_file_size safely
(Baron Schwartz) If you need to change MySQL’s innodb_log_file_size parameter (see How to calculate a good InnoDB log file size), you can’t just change the parameter in the my.cnf file and restart the server.
On Covering Indexes and Their Impact on Performance
(Ovais Tariq) The purpose of this post is to describe what covering indexes are and how they can be used to improve the performance of queries. People mostly use indexes to filter or sort the results but not much thought is given to actually reduce the disk reads by using proper indexes.
You can’t turn Query Cache Off before MySQL 5.5
(Rene Cannao) … or at least, not completely!
An Alternative to Sync Data from SQL Server to MySQL
(scott_liu) My company has the need to synchronize data on a real time basis from MS SQL Server 2008 to MySQL database. At first I thought that it could be done with table triggers after setting up a linked server to MySQL table, and then it would not be a big problem.
MySQL Left Join
(Ilan Hazan) Even if you think you know everything about LEFT JOIN, I bet you will learn something or two in this post!
Useful sed / awk liners for MySQL
(Shlomi Noach) Listing some useful sed / awk liners to use with MySQL. I use these on occasion.
Avoiding Duplicate Records in MySQL
(Alejandro Gervasio) In this MySQL database tutorial, you will be learning how to avoid duplicate records using “Primary Key” and the “Insert Ignore” SQL statement.
