Showing entries 35241 to 35250 of 44885
« 10 Newer Entries | 10 Older Entries »
MySQL Conference ?07 Certification Exam Pass Rates

Mark writes:

At the 2007 conference, they had certification tutorials for CMDBA I and II, along with MySQL Cluster . I attended the CMDBA tutorials, both tracks and it was excellent. It was also packed with attendees, and I can say what I learned there helped me greatly in passing both exams. You should know, only about a third of the attendees taking the CMDBA I exam, and about half taking the CMDBA II exam passed last year. The last years final numbers can be found …

[Read more]
Get Certified at MySQL Conference 2008

It's the premier time to get your MySQL certification! As of today, you have 55 days to get ready before the first testing session on April 15th. Since I'm not in a position to attend the conference this year, I'm passing along all my tips that I learned from the 2007 conference. I'm hoping I can attend, but right now, it's not looking promising.

Why Take Your Exams at the Conference? Simple. . .

1. Soon after the 2007 conference had ended, I wrote up my techniques to study and prepare for the CMDBA exams. This approach saved me a ton of time, and can be applied to the CMDEV and CMCDBA certifications as well.

2. It's the lowest cost you'll have to pay for taking the exams. It's best to prepay for your exams …

[Read more]
Default Fault

Have you run into the 'default fault'?

mysql> create table foo (t1 int not null, note char(10) default 'none');

Query OK, 0 rows affected (0.01 sec)


mysql> insert into foo values (1,'some');

Query OK, 1 row affected (0.01 sec)


mysql> insert into foo values (2);

ERROR 1136 (21S01): Column count doesn't match value count at row 1

mysql>

So why isn't the default value of 'none' automatically entered into the table? If you are an old hand at MySQL, you probably are smiling right now and remembering the first time you whacked you metaphorical toe on this situation. There is a question similar to this in the MySQL exam bank that separates the experienced pros from the newbies.

Okay, so how do you get the default value into the note field?

Hint:

mysql> …

[Read more]
Software Freedom Day 2007, Beijing Report

On IRC, I told Pia, that I enjoyed the Beijing SFD tremendously, and they should definitely win for 2007. I did make a note that if it was required, I would blog about it… She mentioned that it probably wouldn’t matter, because they were a contender already. Nonetheless, I figured that eventually I’d blog about it - turns out its come many months later, generally inspired by Peter Junge’s blog post. Lucky for me, all this isn’t just coming off from memory, but my trip report, that was on an internal mailing list!

First up, some quick resources: the winning report, photos, including the ones from the speaker dinner, held after …

[Read more]
Solaris, Linux, it is GNU folks...

Today I sat down and started to read the post by Amanda McPherson of the Linux Foundation on the recent brouhaha around Sun's announcement about supporting Web 2.0 frameworks:
http://www.linux-foundation.org/weblogs/amanda/2008/02/17/hey-jonathan-the-l-in-lamp-is-literal/

What struck a chord with me about the "L" word is that it really is more then just Linux.

It is GNU.

Richard Stallman's constant mantra of "GNU/Linux" is very relevant.

It is the GNU part that really establishes the platform. FreeBSD gets that, and even Apple gets that.

When you buy a Sun box, and are going to run Solaris on it. What is the first thing you do?

You download all of the GNU utilities to make it useable.

This was true when I …

[Read more]
SSD Without noatime Mount Option Considered Harmful - HUGE Performance Boost

A

FOSDEM

Reporting MySQL Internals with Information Schema plug-ins

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 essentials of the MySQL information schema plug-in interface.

Fronter Bases its New Platform on MySQL and other open source code

Fronter, a leading provider of online e-learning solutions, has chosen to base its new open platform on MySQL and other open source software products -- making it possible to satisfy customer demands for scalability and easy integration with other systems. This investment means a complete transition to platforms with open source code.

Fronter, headquartered in Norway, has enjoyed tremendous success with its learning platform for the education sector. Today, more than 3.8 million users in over 3,000 learning institutions in the UK, Europe and Nordic countries utilise the system to streamline both teaching and collaboration.

For the love of god please use the following on high traffic servers

Let’s begin by assuming you have a server that runs MySQL and lots and lots of traffic flows through it everyday, let’s say… something like 50% of the size of the partition that the mysql binary logs are written to is on, then we will assume the binary log is turned on. Then we assume that expire_logs_days is not set.

What happens? Nagios/etc alerts that the partition is reaching a usage threshold because - low and behold the binary logs are filling up the partition. Tuning this variable is also important. It may need to be set to as low as 1 day, in which case I would say we need a bigger partition for binary logs, but setting it so low can cause replication problems if the slave(s) gets behind more than 1 day - god help us if it does - then those binary logs that the slave is reading are no longer available, and rebuilding replication will be next on the task list. (or using maatkit)

While I’m at it here are some good ones …

[Read more]
Showing entries 35241 to 35250 of 44885
« 10 Newer Entries | 10 Older Entries »