Showing entries 21416 to 21425 of 44105
« 10 Newer Entries | 10 Older Entries »
Christmas @ MariaDB

The Danish "julehjerte" is apparently a Danish/Northern Europe Christmas tradition (at least according to Wikipedia). But hopefully people outside this region will also be able to enjoy this variant:

    

I have been doing "julehjerter" ever since I was a small kid, and every Christmas try to do something different with it. As seen above, this year I decided to combine the tradition with the MariaDB logo, and I am frankly quite pleased with the result :-)

Oracle Open World / Java One 2010 Brazil Day 0 Pictures

First set of pictures from Oracle Open World, Oracle Develop, and JavaOne 2010 in Brazil ...












And a picture from dinner with local Java champions and JUG leaders of Brazil ...



Looking forward to meet many others over the next 3 days.

And the evolving album so far:




JavaOne Brazil
starts in a few more hours and here are some pointers …

[Read more]
Disaster @ Tumblr

Tumblr has been down for more than 12 hours due to an issue with their database cluster. Here is the comment I left on GigaOm.com

This is the freshest lesson for entrepreneurs and startups:
- Learn to value your data
- Implement a high availability plan
- Plan a disaster recovery strategy

“Tumblr likely has the resources to recover…”

I really hope that holds out true but remember, data is the only irreplaceable asset of an organization. Once it’s gone, it’s gone.

When I was handling the disaster at Fotolog (massive database corruption when our SAN crashed), I couldn’t find any company or consulting firm ready to handle the situation and help with data recovery. It was a miracle that I came across the concept of DUDE (Data …

[Read more]
Oracle Open World / Java One 2010 Brazil Day 0 Pictures

First set of pictures from Oracle Open World, Oracle Develop, and JavaOne 2010 in Brazil ...












And a picture from dinner with local Java champions and JUG leaders of Brazil ...



Looking forward to meet many others over the next 3 days.

And the evolving album so far:




JavaOne Brazil
starts in a few more hours and here are some pointers …

[Read more]
Oracle Open World / Java One 2010 Brazil Day 0 Pictures

First set of pictures from Oracle Open World, Oracle Develop, and JavaOne 2010 in Brazil ...












And a picture from dinner with local Java champions and JUG leaders of Brazil ...



Looking forward to meet many others over the next 3 days.

And the evolving album so far:




JavaOne Brazil
starts in a few more hours and here are some pointers …

[Read more]
Awesome Postgres/MySQL cross-pollination

There have been a few great blog posts recently from MySQL bloggers about Postgres, and vice versa, with good comments and follow-on from the real experts in both systems. I think this is wonderful. Learning how other databases solve hard problems is highly educational, especially because ACID databases face some of the hardest problems in computing. Making MySQL better is good for PostgreSQL. The reverse is just as true. And we should also be learning from SQLite, and CouchDB, and others who have overcome tough technical hurdles, built successful companies, created thriving and enthusiastic communities, or whatever their success has been.

Related posts:

  1. Postgres folks, consider the 2011 MySQL conference
[Read more]
LOB storage in MySQL and Postgres

How do InnoDB and Postgres store large columns? Both use overflow pages for rows with large columns and support compression. Postgres is more likely to store large columns in overflow pages and InnoDB is likely to use more space in overflow pages. Tables can be queried in Postgres to determine the per-table space used by overflow pages. MySQL does not have tables for that but the data can be extracted with a lot more work and time.

 

InnoDB

 

Peter wrote an excellent post for InnoDB. There are two file formats, Antelope and Barracuda, and the general approach is the same. A row can use about 1/2 of a page which is ~8k for 16k pages. When the row is too big and has large columns, the largest of them are moved to overflow pages until the row fits. If the row is not small enough after …

[Read more]
Escaping “Lesson Learned” dealing with MySQL Databases & Case Sensitivity

Do you ever need to transfer databases between servers? Different OSes? Two common ways of data migration:1. Create mysqldump and load it.2. File transfer using SCP. MySQL Case Sensitivity and…

The post Escaping “Lesson Learned” dealing with MySQL Databases & Case Sensitivity first appeared on Change Is Inevitable.

Excluding databases from mysqldump

A question that came up during the MySQL track at the UKOUG conference in Birmingham was "Can I exclude only a few databases from mysqldump? Let's say that I have 50 databases, and I want to dump all of them, except a few."
As many know, mysqldump has an option to ignore specific tables. SO if you have 1,000 tables in a databases, you can tell mysqldump to dump all the tables except a few ones.
There is no corresponding option to exclude one or more databases.
However, if you know your command line tools, the solution is easy:
First, we get the list of all databases:

mysql -B -N -e 'show databases'
information_schema
employees
five
four
mysql
one
performance_schema
six
test
three
two

-B forces batch mode (no dashes box around the data), while -N gets the result without the headers.
Now, let's say that we want to exclude databases four, …

[Read more]
Log Buffer #208, A Carnival of the Vanities for DBAs

Welcome to Log Buffer, the weekly round up of news and happenings in the database world.

We’re planning our publishing calendar for 2011. Happy to announce that we’ll have a few guest hosts in the New Year. Don’t forget if you’d like to host or edit a future edition of Log Buffer on your own blog, send a note to the Log Buffer coordinator.

We’ve had several contributions of favorite reads from the team this week. Enjoy this issue, Log Buffer #208.

Gwen Shapira’s picks:

[Read more]
Showing entries 21416 to 21425 of 44105
« 10 Newer Entries | 10 Older Entries »