Showing entries 34873 to 34882 of 44920
« 10 Newer Entries | 10 Older Entries »
High Performance MySQL 2nd Edition is in production

Just a quick note to say we have reached the production stage of the book project. Production is the process of transforming our OpenOffice.org files into the final page layout using a professional typesetting program.

As you can probably guess, this is later than we would have wished. This also means we won’t have the book for sale at the upcoming MySQL Conference and Expo. We will have a display copy at the O’Reilly booth at the conference, and you will be able to pre-order the book at a discount at that booth. (Several details remain to be worked out — do not trust the Amazon.com information on the book, as it is a weird blend of the first and second editions).

The book is very, very good. You will not be disappointed. I can’t think of a credible way to explain how good this book is — it’s just very, very good. Better than anything else you’ve …

[Read more]
Does MySQL Send Passwords In the Clear?

I was asked this question recently, and I thought it was a great little tidbit of knowledge to pass along. The short answer is “no”. The slightly longer answer was written up by Jan Kneschke when dealing with a forum post about proxy + connection pooling.

From http://forums.mysql.com/read.php?146,169265,169700

The clear-text password is _never_ transfered in the authentication phase.

On the network we have:
* client connects to server (no data)
* server sends a seed (40 char, one-time, random)
* client sends 40 char hash of (seed + PASSWORD(clear-text-password))
* server compares against the hash(seed + SELECT password FROM mysql.user WHERE username = )

That way we never have the password as clear-text on the wire. (only in SET PASSWORD or GRANT statements).

MySQL Conference Sessions

At this year’s MySQL Conference & Expo, taking place in Santa Clara, California in mid-April, I’m giving two sessions:

  • Best Practices for Database Administrators
  • Database Security Using White-Hat Google Hacking

You can see more info about me here, including descriptions of the workshops.

I look forward to seeing many of you there. Make sure you say hello!

MySQL: Finally an ability to trace/profile

Finally! The ability to look a little closer into what's happening with SHOW PROFILEHere’s how it works:mysql> set profiling=1;mysql> select count(*) from mysql.user;+----------+| count(*) |+----------+| 5 |+----------+1 row in set (0.00 sec)mysql> show profile;+--------------------------------+----------+| Status | Duration |+--------------------------------+-----

Hands-on CouchDB Workshop at XTech

Dear Readers,

I have a favour to ask. Please register for the first hands-on workshop about programming CouchDB.

Here is the story:

With my slight NADD infection I have, of course, set up a Google Alert on CouchDB. A few weeks ago, an alert came in that surprised me. Fortunately in a good way. The call for papers of the 2008 edition of XTech, a (duh) tech conference in Dublin, Ireland, asked specifically for CouchDB related submission.

How cool is that?

I sent in a whole bunch of proposals, just to make sure one gets through and it …

[Read more]
Hands-on CouchDB Workshop at XTech

Dear Readers,

I have a favour to ask. Please register for the first hands-on workshop about programming CouchDB.

Here is the story:

With my slight NADD infection I have, of course, set up a Google Alert on CouchDB. A few weeks ago, an alert came in that surprised me. Fortunately in a good way. The call for papers of the 2008 edition of XTech, a (duh) tech conference in Dublin, Ireland, asked specifically for CouchDB related submission.

How cool is that?

I sent in a whole bunch of proposals, just to make sure one gets through and it …

[Read more]
Hands-on CouchDB Workshop at XTech

Dear Readers,

I have a favour to ask. Please register for the first hands-on workshop about programming CouchDB.

Here is the story:

With my slight NADD infection I have, of course, set up a Google Alert on CouchDB. A few weeks ago, an alert came in that surprised me. Fortunately in a good way. The call for papers of the 2008 edition of XTech, a (duh) tech conference in Dublin, Ireland, asked specifically for CouchDB related submission.

How cool is that?

I sent in a whole bunch of proposals, just to make sure one gets through and it …

[Read more]
UDFs at the MySQL User's conference

The MySQL User's conference will be held in less than a month from now!!!

This year there is quite a good number of sessions on adding your own functions and procedures, such as:

[Read more]
Free beer!

There will be a MySQL meetup on the start date for all of the US employees this next Monday, March 24th, at 7PM at the Elysian in Seattle.

We will provide beer, quesadillas and nachos, and giving away t-shirts (first come first serve). Come find out all about the integration of Sun and MySQL.

Summer of Code - Get ready with your proposals

The Summer of Code is back.

Students, if you want to apply for a project with MySQL, be aware of the timeline.

March 17-24: Would-be student participants discuss application ideas with mentoring organizations.
March 24 ~12 noon PDT / 19:00 UTC Student application period opens.
March 31
5:00 PM PDT /
00:00 UTC April 1, 2008
Student application deadline.


What you need to do now, before the submission for application opens, is to discuss the ideas already published or suggest new ones using the mailing list.
This year there is an interesting …

[Read more]
Showing entries 34873 to 34882 of 44920
« 10 Newer Entries | 10 Older Entries »