(Ben Martin) With MySQLfs you can store a filesystem inside a MySQL relational database. MySQLfs breaks up the byte content of files that you store in its filesystem into tuples in the database, which allows you to store large files in the filesystem without requiring the database to support extreme
Tag: Open Source
Is MySQL getting faster?
(Mark Callaghan) Is MySQL getting faster over time? I think so. It is difficult to keep things fast as features are added, but many operations have gotten faster between 4.0.26 and 5.0.54 and the performance of 5.0.54 is much improved over 5.0.37. I ran a few tests to measure the difference: –du
10000+ tables in one MySQL database
(Bjørn Hansen) Once in a while I hear people talking about using thousands or tens of thousands of tables in one MySQL database and often how it “doesn’t work”.
DML to generate DDL and DCL- Making structural and Permission changes to multiple tables
(Leo Hsu and Regina Obe) Every once in a while you are tasked with an issue such as having to create logging fields in each of your tables or having to put like constraints on each of your tables or you need to Grant an X group or X user rights to a certain set of tables.
What Applications Are Good For MySQL Cluster?
(Sheeri Cabral) Someone asked me what applications were good/bad for MySQL Cluster. As I’ve now actually had experience with a Cluster setup and a real-life application of it, and dug through the manual, I present a few characteristics of applications that will work with Cluster, and why they are so
How to convert a table column to another data type
(Leo Hsu and Regina Obe) As Robert Treat pointed out in our PostgreSQL 8.3 is out and the Project Moves On, one of the features that was introduced in PostgreSQL 8.0 was the syntax of ALTER TABLE sometable ALTER COLUMN somecolumn TYPE new_data_type USING some_function_call_to_cast(somecolumn);
MySQL Information Schema Plugins: the best kept secret of MySQL 5.1
(Roland Bouman) MySQL 5.1 offers an extremely useful feature called information_schema plugins. This feature allows dynamic runtime loading of a shared library into the MySQL server to implement a table in the information_schema database. The SQL standard (ISO/IEC 9075-11:2003) allows database imple
How to check MySQL Config files
(Peter Zaitsev) Probably most of MySQL users sometime had a situation when they would do changes in MySQL config file without restarting server (may be matching SET GLOBAL command to do it in run time) but either because option is misspelled or because given version does not support such option the
How Fast Can Updates Run?
(Martin Farach-Colton) Last time, I introduced the notion of strict and lenient updates. Now it’s time to see what the performance characteristics are of each.
Reporting MySQL Internals with Information Schema plug-ins
(Roland Bouman) Last week, I described how to use the MySQL plug-in API to write a minimal ‘Hello world!’ information schema plug-in. The main purpose of that plug-in is to illustrate the bare essence of the MySQL information schema plug-in interface.
