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.
What does it do?
There are views answering for all sorts of useful information: stuff related to schema analysis, data dimensions, monitoring, processes & transactions, security, internals… There are basic functions answering for common needs.
Some of the views/routines simply formalize those queries we tend to write over and over again. Others take the place of external tools, answering complex questions via SQL and metadata. Still others help out with SQL generation.
Here are a few highlights:
- Did you know you can work out simple monitoring of your server with a query? There’s a view to do that for you.
- How about showing just the good parts of the processlist?
- Does your schema have redundant keys?
- Or InnoDB tables with no PRIMARY KEY?
- Is AUTO_INCREMENT running out of space?
- Can I get the SQL statements to generate my FOREIGN KEYs? To drop them?
- And can we finally get SHOW GRANTS for all accounts, and as an SQL query?
- Ever needed a 64 bit CRC function?
- And aren’t you tired of writing the cumbersome SUBSTRING_INDEX(SUBSTRING_INDEX(str, ‘,’, 3), ‘,’, -1)? There’s an alternative.
There’s more. Take a look at the common_schema documentation for full listing. And it’s evolving: I’ve got quite a few ideas already for future components.
Some of these views rely on heavyweight INFORMATION_SCHEMA tables. You should be aware of the impact and risks.
What do I need to install?
There’s no script or executable file. It’s just a schema. The distribution in an SQL file which generates common_schema. Much like a dump file.
What are the system requirements?
It’s just between you and your MySQL. There are currently three distribution files, dedicated for different versions of MySQL (and allowing for increased functionality):
- common_schema_mysql_51: fits all MySQL >= 5.1 distributions
- common_schema_innodb_plugin: fits MySQL >= 5.1, with InnoDB plugin + INFORMATION_SCHEMA tables enabled
- common_schema_percona_server: fits Percona Server >= 5.1
Refer to the documentation for more details.
What are the terms of use?
common_schema is released under the BSD license.
Where can I download it?
On the common_schema project page. Enjoy it!
Oh, there’s also the easter day function, but it didn’t seem to fit directly in the categories you provide.
http://forge.mysql.com/tools/tool.php?id=250
(maybe date/time functions?)