Showing entries 34863 to 34872 of 44805
« 10 Newer Entries | 10 Older Entries »
Going to the Sun/MySQL Meetup Mashup in Munich this Friday

As Kaj already pointed out, the Sun/MySQL Meetup Mashup Tour will also make a stop in Munich, Germany this Friday. I will be there as well, we will meet at 14:00 at the Hilton Munich Park Hotel. Kaj and some other Sun people will join us a bit later. If you are in the area, make sure to stop by!

By the way, the Meetup Mashup Tour will make at least one more stop in Germany - I am organizing an event in Hamburg, Germany which will take place on Monday, April 7th (19:00). This was initially planned as another regular MySQL Meetup, but I offered to expand the scope a bit. We will now meet at the Sun offices, Sun will sponsor some food and drinks! In addition to …

[Read more]
Reason # 2 to attend the MySQL UC2008

Disclaimer: Forget about my affiliation, this is my personal list of things that I am going to enjoy at the UC.
#2 Astronomy, Petabytes, and MySQL


Petabytes! Have you heard that before? Perhaps you have, during some theoretical IT class. But have you used anything that could be remotely close to petabytes?
A petabyte is one thousand Terabyte, or one million Gigabyte.
If you struggle with databases with a few dozen Gigabytes, and you have headaches when you think that you have to deal with Terabytes of data, you can't possibly imagine how to store petabytes of data, …

[Read more]
MySQL stored procedurs: ...the CASE that they gave me...

Let's see if you can solve this little puzzle...

Consider this stored procedure:


-- finds the first slash and exits
create procedure p_find_slash(p_text text)
begin
declare v_index int default 1;
declare v_length int default character_length(p_text);
declare v_char char(1);

_main_loop: while v_index <= v_length do -- loop over all characters

set v_char := substring(p_text, v_index, 1); -- grab the current character
case v_char
when v_char = '/' then -- found a slash!
select concat('A slash at ', v_index) message; -- report it
leave _main_loop; -- and then stop
else …
[Read more]
some fun: sql injection
About immigration cards in Moscow


Tuesday evening, Moscow was our next stop. Engineering, Support, Internal IT, Professional Services — as in Sweden, various MySQL departments were represented. Russia is a key personnel country for MySQL, and has been so for years. It’s my third time with MySQL in Moscow, and it feels good to start being able to find Count Dolgorukyi, Arbat, St. Basil’s Cathedral, Kremlin, the Red Square, and the Tverskaya Ulitsa.

So as not to bore you with repeating the MySQL on-boarding discussions we had, which were much the same as everywhere else, let me instead share our experience of how to login into Russia, and, more complicated, Marriott Grand Hotel on Tverskaya.

Scene 1: Yesterday, 15:00, Domodedovo airport, Rusaero Biznes Terminal.

  • Immigration lady: Do you need an immigration card?
  • We: Uhmm, if you say so
  • No further action, we depart from Domodedovo, which …
[Read more]
MySQL 6.0 is alpha - Falcon is Beta

While MySQL 5.1 is almost ready, MySQL 6.0 is already in alpha with many new features, including a Beta of Falcon. Falcon (Intro, White Paper) is designed for typical Web 2.0 workloads in modern (i.e. many cores, large memory) machines.

Check out the MySQL 6.0 home page and the …

[Read more]
Sysbench fileio vs EC2 Part 1

Overview:Peter Zaitsev's recent article about Evaluating IO subsystem performance for MySQL spurred my interest in doing something similar on EC2.I have covered running sysbench against MySQL on EC2 however not specifically used sysbench to test IO. Rather I had used bonnie++ and iozone to do that.I don't have a lot of respect for the EC2 small instance. Whilst it was reasonable in the middle of

Sysbench fileio vs EC2 Part 1

Overview:

Peter Zaitsev’s recent article about Evaluating IO subsystem performance for MySQL spurred my interest in doing something similar on EC2.

I have covered running sysbench against MySQL on EC2 however not specifically used sysbench to test IO. Rather I had used bonnie++ and iozone to do that.

I don’t have a lot of respect for the EC2 small instance. Whilst it was reasonable in the middle of 2006 when Amazon EC2 was launched, you can (even in Australia) pick up Dual and Quad Core CPUs with enough memory for 32 …

[Read more]
Sometimes you must wonder what crack people smoke

2>.\my_lwrite.c(31) : warning C4996: ‘write’: The POSIX name for this item is deprecated. Instead, use the ISO C++ conformant name: _write. See online help for details.

WTF.

If Visual Studio 2008 crashes one more time today….

jMaki on Rails - Reloaded for NetBeans 6.1 beta & Rails 2.0


NetBeans 6.1 Beta was released last week. Amongst the many improvements, one of them is the bundled JRuby 1.1 RC2 and Rails 2.0.2. The jMaki plugin used to work fine with Rails 1.2.3 but need to be updated because of changed file name extensions for the default generated views (".rhtml.erb" instead of ".rhtml"). With this release of NetBeans, jMaki plugin has been updated to work in this configuration as well.

This blog provide detailed steps to install jMaki plugin, create a simple Rails 2.0 application using NetBeans IDE and update the generated scaffold to use a Yahoo Data Table widget for displaying the …

[Read more]
Showing entries 34863 to 34872 of 44805
« 10 Newer Entries | 10 Older Entries »