(Mark Willium) MySQL database offers seven syntaxes for proper maintaining of mysql table’s records. Those syntaxes are as follows:
Tag: Open Source
Dynamic row format for MEMORY tables
(Laurynas Biveinis) The latest Percona Server release has one new feature: now MEMORY tables can have BLOB and TEXT columns, and VARCHAR columns will not waste space due to implicit extension to CHAR.
common_schema rev. 68: eval(), processlist_grantees, candidate_keys, easter_day()
(Shlomi Noach) Revision 68 of common_schema is out, and includes some interesting features:
MySQL with Windows Server 2008 R2 Failover Clustering
(Andrew Morgan) Oracle has announced support for running MySQL on Windows Server Failover Clustering (WSFC); with so many people developing and deploying MySQL on Windows, this offers a great option to add High Availability to MySQL deployments if you don’t want to go as far as deploying MySQL Clust
MySQL eval()
(Shlomi Noach) I’ve just implemented an eval() call for MySQL. It is implemented with SQL, using a stored procedure. So this is not some plugin: you can use it from within your normal database server.
MySQL Cluster is a brilliant NoSQL database
(Vinay Joosery) MySQL Cluster* is one of the most advanced and scalable databases available today and, despite what its name might suggest, it is also a brilliant NoSQL database**.
Is group_concat_max_len in bytes or characters?
(Eric Bergen) The manual says bytes but sometimes it is measured in characters. It seems like group_concat_max_len is in bytes when being passed through a temporary table and in characters otherwise. This works fine when using latin1 but when converting to utf8 mysql must reserve 3 bytes per charact
Finding tables without primary keys
(Giuseppe Maxia) I was checking a third party server, and I needed to find if there were tables without primary keys. This is important to know, not only because the lack of primary keys affects performance and data accuracy in general, but also because in row-based replication performance can degra
About MySQL storage engines and replication
(pgalbraith) I know most articles are more about DBA issues, however, being a MySQL DBA means that you have several hats that you can where– data architect, application developer, MySQL source developer, and often good old fashioned DBA. I recently had an interesting problem with a particular projec
Primary keys from experience
(Giuseppe Maxia) From time to time I see articles in defense of natural primary keys against surrogate keys. I don’t take an immovable stand on either side, as I have seen good cases for both. In general, I like the idea of a natural primary key, when I see one that it is really natural. Quite often
