Showing entries 39861 to 39870 of 44002
« 10 Newer Entries | 10 Older Entries »
MySQL AB partners with Tandem-Forum to offer database training courses in Russia

Tandem-Forum has signed an agreement with MySQL AB to become an Authorized MySQL Training Center (AMEC) and will immediately begin to offer MySQL 5.0 training in Moscow, Russia.

MySQL Repair table doing "repair by sort" with no TMD tables?
MySQL: Pure virtual function called
New Book Review ? MySQL Phrasebook

New review up at http://www.openwin.org/mike/index.php/books/mysql-phrasebook/.

Short version: I like it.

MySQL Scale-Out by application partitioning

Eventually every database system hit its limits. Especially on the Internet, where you have millions of users which theoretically access your database simultaneously, eventually your IO system will be a bottleneck.

New release 0.3 of nagios-mysql-plugins uploaded.

Question: How can I monitor the basic database related system information for my MySQL host?

Answer: The following monitoring utilities can be used to montitor your MySQL host and database:

MySQL Releases a Unified GUI Tools Manual

The MySQL documentation team has released a companion manual to accompany the new single installer for all MySQL GUI tools in the form of a unified manual for all GUI tools, available as a PDF at http://downloads.mysql.com/docs/guibook-en.pdf.

Should be worth keeping on hand if you are a heavy GUI user.

joining activerecord with mysql 5

dhh committed a patch for activerecord to make it work with mysql 5 that was subsequently reverted because it broke things on postgres and sqlite.

obviously we?d like ruby on rails to work with mysql 5, but because there was no test case committed along with either of these changes, i don?t really know the root cause of the problem. dhh claims it is the changes that made mysql conform to the standard sql join syntax, but i can?t evaluate that because i can?t reproduce the problem.

any activerecord gurus want to …

[Read more]
Cluster Utilities Revealed

Ever wonder what all those binaries with names starting in “ndb” were doing in mysql/bin? Not surprisingly, they’re MySQL Cluster monitoring, utility, and demonstration programs, and after a couple of fun-filled weeks of experimenting with them (and asking a few of the usual sorts of silly questions I’m know for asking in the right quarters) I’ve been able to document most of them in a new Cluster Utility Programs section of the MySQL Manual (I’ve linked to the 5.1 version, but they’re available in 4.1 and 5.0, too).

If you’ve not looked at these before, check them out. A couple of them — like ndb_waiter and ndb_desc — are handy for monitoring a MySQL Cluster or getting information about NDB tables and other Cluster data objects; others — such as …

[Read more]
Matching two ranges

In our project (the secret merlin project) at MySQL I had to fetch entries from the table which specified by a time-span with a start and a end time:

root@localhost [merlin]> select * from dc_INTEGER; 
+---------+------------+-------+---------------------+---------------------+
| data_id | collect_id | value | begin_time          | end_time            | 
+---------+------------+-------+---------------------+---------------------+
|       1 |          3 |     0 | 2005-10-12 13:28:04 | 2005-10-13 13:43:25 |
|       2 |          1 |    94 | 2005-10-12 15:46:01 | 2005-10-13 10:22:28 |
|       3 |          1 |    95 | 2005-10-13 10:22:28 | 2005-10-13 11:15:59 |
|       4 |          1 |    94 | 2005-10-13 11:15:59 | 2005-10-13 13:43:31 |
+---------+------------+-------+---------------------+---------------------+

The ranges never overlap for the same collect_id.

Now the problem was: How does the query look like if I want to fetch time-span …

[Read more]
Showing entries 39861 to 39870 of 44002
« 10 Newer Entries | 10 Older Entries »